Displaying 3 results from an estimated 3 matches for "nas_ip".
2003 Jul 11
0
Subject: WINS for a NAS (group names should not be multihomed)
...s a PDC (node name 'TESTPDC', domain name
'MYDOMAIN') and WINS server
=-=-=-=-=-
# grep -i wins smb.conf
        wins support = yes
-=-=-=-=-=
we also use a NetApp Filer F87 (netBIOS name 'JUPITER') configured
 - with only one nw interface, with an IP number shown here as ((NAS_IP))
 - to join a CIFS domain (no problem for now), and registered the Samba
   host as a WINS server
pertinent wins.dat snippet:
=-=-=-=-=-
"JUPITER#00" 1058250168 ((NAS_IP)) 64R
"JUPITER#03" 1058250168 ((NAS_IP)) 64R
"JUPITER#20" 1058250168 ((NAS_IP)) 64R
-=-=-=-=-=
t...
2005 Jul 18
0
why $cdr{'CALLERID'} and $cdr{'DNID'} are empty in perl agi connected with asterisk manager
...onitor_dir = '/var/spool/asterisk/monitor';
# Read global RADIUS configuratuin from
extensions.conf
#
# I havte doing that but Asterisk manager interface
can not read global variables
#
my $config_dir = '/usr/local/etc/asterisk';
# Globals
#
my %channels;
my ($rad_serv, $rad_sec, $nas_ip);
# Check if already running
#
if( -e $lock_file ) {
   open(PID,$lock_file);
   my $pid=<PID>;
   close PID;
   chomp $pid;
   if( !-e "/proc/$pid" ) {
      print STDERR "Lock file present, but no process
with pid=$pid.\n";
      die "Can't delete lock file $lo...
2019 May 19
3
Samba as AD controller and local auth
...e = active directory domain controller
	printing = cups
	max protocol = SMB2
	winbind enum users = yes
	load printers = yes
	log level = 10
I am trying to mount a share like so from another Linux box (using both Linux and Windows boxes on the network):
mount --verbose -t cifs -o user=MYUSER,ro //NAS_IP/Share ./localMountPath
which is prompting me for a passwd and then displaying:
mount.cifs kernel mount options: ip=NAS_IP,unc=\\NAS_IP\Share,user=MYUSER,pass=********
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
Checking out the logfiles on the...