1834447 Members
2387 Online
110067 Solutions
New Discussion

dhcp

 
SOLVED
Go to solution
Scott McDade
Frequent Advisor

dhcp

I am trying to get my C3600 running 11i onto my home network. All of the other devices on the network are using dhcp. How/where in HPUX can I enable and configure dhcp?

-Scott
Keep it Simple!~
4 REPLIES 4
Ravi_8
Honored Contributor
Solution

Re: dhcp

Hi, scott

In /etc/rc.config.d/netconf file set theDHCP_ENABLE flag to 1.
i.e DHCP_ENABLE[0]= 1
and reboot the machine, while booting machine executes set_parms initial command and ask you for DHCP, hostname et all
never give up
T G Manikandan
Honored Contributor

Re: dhcp

in your /etc/rc.config.d/netconf

INTERFACE_NAME[0]="lan0"
IP_ADDRESS[0]=""
SUBNET_MASK[0]="255.255.255.255"
BROADCAST_ADDRESS[0]=""
INTERFACE_STATE[0]=""
DHCP_ENABLE[0]=1

Here lan0 is the first interface.
#shutdown -r
your system for these values to take effect.(restart)
T G Manikandan
Honored Contributor

Re: dhcp

in your /etc/rc.config.d/netconf

INTERFACE_NAME[0]="lan0"
IP_ADDRESS[0]=""
SUBNET_MASK[0]="255.255.255.255"
BROADCAST_ADDRESS[0]=""
INTERFACE_STATE[0]=""
DHCP_ENABLE[0]=1

Here lan0 is the first interface.
#shutdown -r
your system for these values to take effect.(restart)
Ernesto Cappello
Trusted Contributor

Re: dhcp

HI
you can try this configuration in your /etc/rc.config.d/netconf

INTERFACE_NAME[0]="lan0"
IP_ADDRESS[0]=""
SUBNET_MASK[0]="255.255.255.255"
BROADCAST_ADDRESS[0]=""
INTERFACE_STATE[0]=""
DHCP_ENABLE[0]=1

the value "lan0" is the first interface.

This settings for your gateway :

ROUTE_DESTINATION[0]=default
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]=XXX.XXX.XXX.XXX
ROUTE_COUNT[0]=1
ROUTE_ARGS[0]=""

#shutdown -r
Restart your system and these values to take effect.

Regards
Ernesto