linux下dhcp配置(二)

 LinuxDHCP配置(中继)

 

启动另一台linux作为路由器,增加三个网卡hostonly  eth2  eth3

Ifconfig eth0 192.168.145.254 配置临时IP网卡

编辑三个网卡:

Eth0 145.254

Eth1 20.254

Eth2 10.254

网关都是255.255.255.0

service network restart

 

vi /etc/sysctl.conf

 

Sysctl –p

挂载光盘

 

安装dhcp

vi /etc/sysconfig/dhcrelay

 

Service dhcrelay start

netstat –tupln |less

chkconfig dhcrelay on

打开一windows测试,网卡选择vmnet3

Doc>ipconfig |all

网卡选择vmnet3

Doc>ipconfig |all

快速重启ip服务:ipconfig |release   ipconfig |renew  ipconfig |all

路由器抓包:rpm –ivh wireshark-3……..(安装wireshark)

Dhcp服务器端:tshark –ni eth0 –R “udp.port eq 67’

路由器端:tshark –ni eth1 –R “udp.port eq 67’

 

 

 

 

你可能感兴趣的:(linux)