Date: Mon, 05 May 2003 19:15:47 -0500 From: "Jack L. Stone" <jackstone@sage-one.net> To: Alfonso Romero <ibac@prodigy.net.mx>, freebsd-questions <freebsd-questions@freebsd.org> Subject: Re: restarting natd Message-ID: <3.0.5.32.20030505191547.0135f0e8@sage-one.net> In-Reply-To: <011f01c3135a$688d9740$0100a8c0@ibac>
next in thread | previous in thread | raw e-mail | index | archive | help
At 06:02 PM 5.5.2003 -0500, Alfonso Romero wrote: >How can I restart natd? Using kill -s HUP <pidnumber>? Or is there another more conservative way? > > >Thanks in advance, > > >Alfonso Romero First, look to see what flags you have currently running: # ps -auxw | grep natd root 138 0.0 0.0 636 352 ?? Ss 18Apr03 7:59.22 /sbin/natd -n rl0 Then, try this first: # killall -HUP natd If that doesn't work, then this will: # kill `ps -auxw | grep natd | awk '{print $2}'` ...then restart using youe same flags: # /sbin/natd -n rl0 Hope this helps.... Best regards, Jack L. Stone, Administrator SageOne Net http://www.sage-one.net jackstone@sage-one.net
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3.0.5.32.20030505191547.0135f0e8>