DHCP中继

 


DHCP中继


服务器:在/etc/dhcpd.conf内再加一个192.168.2.0网段
 
        关闭防火墙

        网关指向中继机同网段ip(route add default gw 192.168.1.1)

 

中继机:也要安装dhcp的rpm包,cp以上步骤同服务器

       # vi /etc/sysctl.conf
       net.ipv4.ip_forward = 1

       :wq

       # sysctl -p
       # vi /etc/sysconfig/dhcrelay
   
       INTERFACES="eth0 eth1"
       DHCPSERVERS="192.168.1.2"                      (服务器ip)

       :wq
 

       # ifconfig eth0 192.168.1.1
       # ifconfig eth1 192.168.2.1
       # service dhcrelay start
       # chkconfig -- level 3 5 dhcrelay on

      
中继机两个网卡,一个与服务器同,一个与客户机同

关闭防火墙

 


客户机:可linux也可windows

 

配置临时的MAC地址(虚假MAC):

ifconfig eth0 hw ether MAC地址

配置/添加一个新的虚拟网卡(非物理网卡):

ifconfig eth0:0 192.168.1.10


为打印机分配固定ip(在DHCP内):

安装dhcp的rpm包、cp以上步骤同DHCP服务器

# vi /etc/dhcpd.conf          (在最后编写)

host prtsvr {
hardware ethernet MAC地址
fixed-address 192.168.1.5
}

 

你可能感兴趣的:(DHCP中继)