码迷,mamicode.com
首页 > 其他好文 > 详细

Ubuntu 与CentOS 6.5 配置单网卡双IP

时间:2014-08-26 14:58:16      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   文件   div   log   line   sp   

Ubuntu配置双IP

sudo vim /etc/network/interfaces 打开IP配置文件

 1 auto lo
 2 iface lo inet loopback
 3 auto eth0
 4 iface eth0 inet static
 5 #pre-up ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx 
 6 address 210.47.248.180
 7 netmask 255.255.255.0
 8 gateway 210.47.248.254
 9 nameserver 8.8.8.8
10 auto eth0:0
11 iface eth0:0 inet static
12 address 192.168.3.40
13 netmask 255.255.255.0

pre-up ifconfig eth0 hw ether 为克隆mac地址

auto eth0:0 为增加的IP

Centos 6.5 配置双IP

sudo vim /etc/sysconfig/network-scripts/ifcfg-Auto_eth0

 1 HWADDR=74:D0:2B:27:30:FF
 2 TYPE=Ethernet
 3 BOOTPROTO=none
 4 IPADDR=210.47.248.171
 5 PREFIX=24
 6 GATEWAY=210.47.248.254
 7 DNS1=8.8.8.8
 8 DEFROUTE=yes
 9 IPV4_FAILURE_FATAL=yes
10 IPV6INIT=no
11 NAME="Auto eth0"
12 UUID=3baad9b7-be6c-419b-bfff-c19a3ff1fe60
13 ONBOOT=yes
14 LAST_CONNECT=1405671005
15 IPADDR2=192.168.3.4
16 PREFIX2=24

IPADDR2与PREFIX2为增加ip项,PREFIX值为24等同于子网掩码为255.255.255.0

Ubuntu 与CentOS 6.5 配置单网卡双IP

标签:style   blog   color   os   文件   div   log   line   sp   

原文地址:http://www.cnblogs.com/lyhonk/p/3937083.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!