- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- setting up IP address
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-05-2002 09:03 AM
08-05-2002 09:03 AM
setting up IP address
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2002 09:06 AM
08-05-2002 09:06 AM
Re: setting up IP address
man set_parms
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2002 09:07 AM
08-05-2002 09:07 AM
Re: setting up IP address
set_parms ? will give you some help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2002 09:08 AM
08-05-2002 09:08 AM
Re: setting up IP address
/sbin/set_parms ip_address
then
/sbin/set_parms addl_netwrk
...jcd...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2002 09:12 AM
08-05-2002 09:12 AM
Re: setting up IP address
# /sbin/set_parms
it 'll return the usage which shows you you can run it with these arguments ..
hostname
timezone
date_time
root_passwd
ip_address
addl_netwrk
So you'll need to run ..
# /sbin/set_parms ip_address
and
# /sbin/set_parms addl_netwrk
Reboot will be required.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2002 09:14 AM
08-05-2002 09:14 AM
Re: setting up IP address
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2002 09:17 AM
08-05-2002 09:17 AM
Re: setting up IP address
set_parms is what you need to configure IP, mask... at command prompt.
Hai
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2002 09:20 AM
08-05-2002 09:20 AM
Re: setting up IP address
two options:
Run /sbin/set_parms
Edit the file /etc/rc.config.d/netconf file and add your entries their. You either have to reboot the system or stop and start the net daemons and inetd
gl,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2002 09:58 AM
08-05-2002 09:58 AM
Re: setting up IP address
You can use sam as a menu based interface. SAM works pretty fine with a character base emulation too. Or you can use the /sbin/set_parms from the command line.
/sbin/set_parms ip_address to set the ip address and
/sbin/set_parms addl_netwrk o set the netmask and other network parameters.
Hope this helps.
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2002 09:15 AM
08-06-2002 09:15 AM
Re: setting up IP address
vi /etc/rc.config.d/netconf
and make you changes.
vi /etc hosts
and add the new address and fqdn there
assuming you are using lan0 as your nic to the world:
ifconfig lan0 123.123.123.123 netmask 255.255.255.0 broadcast 123.123.123.255 up
route add default 123.123.123.1 1
Of course you would replace the numbers given in the example with your valid IP address netmask etc.