Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2000 01:46 PM
08-21-2000 01:46 PM
Hopefully a quick question. Can I avoid a restart after making changes to my netconf file? Does ifconfig lan1 down/up cause it to re-read the file or do I need to stop/start a daemon? Right now I'm restarting to be sure, but I'd love to avoid the stop/start wait :)
Thanks,
Steve
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2000 01:55 PM
08-21-2000 01:55 PM
SolutionRerunning the startup script '/sbin/init.d/net start'
pretty much reconfigures everything from a modified netconf but it may depend on exactly what you've changed.
ifconfig lan? down disables the interface and up re-enables it, nothing to do with netconf.
If you look at the 'net' script in /sbin/init.d you will see that amongst other things it calls 'ifconfig' to configure the relevant interfaces.
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2000 02:13 PM
08-21-2000 02:13 PM
Re: netconf
/sbin/init.d/net stop/start is going to check what you've done. Not reboot is necessary. You might need to stop/restart /sbin/init.d/nfs.core or other scripts, depends on what you modified. But, basically, /sbin/init.d/net is enough.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2000 06:53 PM
08-21-2000 06:53 PM
Re: netconf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2000 07:52 PM
08-21-2000 07:52 PM
Re: netconf
Alternatively you could try something like "/sbin/init.d/net stop && /sbin/init.d/net start".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2000 03:06 AM
08-22-2000 03:06 AM
Re: netconf
Godd luck