선결조건으로 최신 Lan cumulative patch가 install되어 있어야 하고 lan card의 speed와 duplex mode를 바꿀때는 주의 하여야 한다. 만약 switch가 새로 바뀔 speed와 duplex mode가 card와 맞지 않으면 HP와 연결되지 않는다.
l HP-UX 10.20
1. lanscan으로 NMID값을 알아낸다. 예로 5라고 가정하자.
2. lanadmin으로 speed와 duplex를 setting한다. 선택할 수 있는 값은 100FD, 100HD, 10FD, 10HD, AUTO_ON이고 숫자는 Mbps이다.
FD : Full Duplex, HD : Half Duplex
AUTO_ON : switch와 auto negotiation을 사용하겠다는 의미
예로 100 Mbps Full duplex로 setting하고 싶을때는
#lanadmin -X 100FD 5 <--- step 1에서 얻은 NMID
HP-UX 11.0
1. lanscan으로 PPA값을 알아낸다. 예로 3이라고 가정하자.
2. lanadmin으로 speed와 duplex를 setting한다
예로 100 Mbps Half duplex로 setting하고 싶을때는
#lanadmin -X 100HD 3 <--- step 1에서 얻은 PPA
이상의 setting은 rebooting하면 원래의 값으로 바뀐다. 영구적인 setting을 하려면 /etc/rc.config.d directory에 "hp"로 시작해서 "conf"로 끝나는 file중에서 자신의 lancard와 같은 종류의 file을 editing 해야한다. 예를들어 HP-PB 100BT card이면 /etc/rc.config.d/hpbasetconf file을 고쳐야 함.
################################################
# @(#) hpbasetconf $Revision: 1.3 $ $Date: 98/04/16 13:01:27 $
# hpbasetconf : contains configuration values for HP 100Mb interfaces
#
# HP_BASET_INTERFACE_NAME Name of interface (lan0, lan1...)
# HP_BASET_STATION_ADDRESS Station address of interface
# configured through lanadmin(1m)
# Prefixed with "0x".
#
# HP_BASET_SPEED Manually set the driver's speed. Can be one
# of: 10HD, 10FD, 100HD, 100FD, auto_on
#
# The interface name, major number, card instance and nmid may be
# obtained from the lanscan(1m) command.
#
# The station address and duplex are set through the lanadmin(1m) command.
#
#####################################################################
HP_BASET_INTERFACE_NAME[0]=lan5
HP_BASET_STATION_ADDRESS[0]=
HP_BASET_SPEED[0]=100FD
###########################################################################
# The HP_BASET_INIT_ARGS are reserved by HP. They are NOT user changable.
HP_BASET_INIT_ARGS="HP_BASET_STATION_ADDRESS HP_BASET_SPEED"
# End of hpbasetconf configuration file
l HP-UX 10.20
1. lanscan으로 NMID값을 알아낸다. 예로 5라고 가정하자.
2. lanadmin으로 speed와 duplex를 setting한다. 선택할 수 있는 값은 100FD, 100HD, 10FD, 10HD, AUTO_ON이고 숫자는 Mbps이다.
FD : Full Duplex, HD : Half Duplex
AUTO_ON : switch와 auto negotiation을 사용하겠다는 의미
예로 100 Mbps Full duplex로 setting하고 싶을때는
#lanadmin -X 100FD 5 <--- step 1에서 얻은 NMID
HP-UX 11.0
1. lanscan으로 PPA값을 알아낸다. 예로 3이라고 가정하자.
2. lanadmin으로 speed와 duplex를 setting한다
예로 100 Mbps Half duplex로 setting하고 싶을때는
#lanadmin -X 100HD 3 <--- step 1에서 얻은 PPA
이상의 setting은 rebooting하면 원래의 값으로 바뀐다. 영구적인 setting을 하려면 /etc/rc.config.d directory에 "hp"로 시작해서 "conf"로 끝나는 file중에서 자신의 lancard와 같은 종류의 file을 editing 해야한다. 예를들어 HP-PB 100BT card이면 /etc/rc.config.d/hpbasetconf file을 고쳐야 함.
################################################
# @(#) hpbasetconf $Revision: 1.3 $ $Date: 98/04/16 13:01:27 $
# hpbasetconf : contains configuration values for HP 100Mb interfaces
#
# HP_BASET_INTERFACE_NAME Name of interface (lan0, lan1...)
# HP_BASET_STATION_ADDRESS Station address of interface
# configured through lanadmin(1m)
# Prefixed with "0x".
#
# HP_BASET_SPEED Manually set the driver's speed. Can be one
# of: 10HD, 10FD, 100HD, 100FD, auto_on
#
# The interface name, major number, card instance and nmid may be
# obtained from the lanscan(1m) command.
#
# The station address and duplex are set through the lanadmin(1m) command.
#
#####################################################################
HP_BASET_INTERFACE_NAME[0]=lan5
HP_BASET_STATION_ADDRESS[0]=
HP_BASET_SPEED[0]=100FD
###########################################################################
# The HP_BASET_INIT_ARGS are reserved by HP. They are NOT user changable.
HP_BASET_INIT_ARGS="HP_BASET_STATION_ADDRESS HP_BASET_SPEED"
# End of hpbasetconf configuration file