- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Missing Netconf
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-29-2001 07:19 PM
08-29-2001 07:19 PM
Missing Netconf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 07:38 PM
08-29-2001 07:38 PM
Re: Missing Netconf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 07:45 PM
08-29-2001 07:45 PM
Re: Missing Netconf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 07:46 PM
08-29-2001 07:46 PM
Re: Missing Netconf
/usr/newconfig/etc/rc.config.d/netconf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 07:52 PM
08-29-2001 07:52 PM
Re: Missing Netconf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 08:06 PM
08-29-2001 08:06 PM
Re: Missing Netconf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 08:33 PM
08-29-2001 08:33 PM
Re: Missing Netconf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 09:39 PM
08-29-2001 09:39 PM
Re: Missing Netconf
You may execute the following to reconstruct your /etc/rc.config.d/netconf file :
#lanscan
Will give you all configured lan cards within your system. Catch the names under the column NamePPA ( Name of Physical Point of Attachement, example : lan0).
For each value occurs under NamePPA, apply the following :
#ifconfig lan0
Note info according to :
inet
netmask
broadcast
#netstat -r
Will give you the default gateway IP address( intersection between line default and column Gateway : example : def1).
In your netconf file type :
INTERFACE_NAME[0]=lan0
IP_ADDRESS[0]=valueOfInet ### from ifconfig command
SUBNET_MASK[0]=valueOfNetmask ### from ifconfig command
BROADCAST_ADDRESS[0]=valueOfBroadcast ### from ifconfig command
INTERFACE_STATE[0]=up
ROUTE_DESTINATION=[0]=default
ROUTE_GATEWAY[0]=valueOfDef1 ### from netstat command
Repeat these steps for each other NamePPA and your /etc/rc.config.d/netconf will be up to date.
Good luck.
Magdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2001 09:46 PM
08-29-2001 09:46 PM
Re: Missing Netconf
For each other NamePPA ( lan1, lan2, ... ), you must increase the INSTANCE ID .
Example :
For lan1, it will be ( notice the INDEX between [ ] ):
INTERFACE_NAME[1]=lan1
IP_ADDRESS[1]=inet ### for ifconfig lan1
...etc
For lan2, it will be ( notice the INDEX between [ ] ):
INTERFACE_NAME[2]=lan2
IP_ADDRESS[2]=inet ### for ifconfig lan1
...etc
Magdi