当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > FreeBSD, Debian, CentOS一个网卡绑定多个IP

Unix/Linux
Slackware中MPlayer的手动安装方法
rhel5硬盘安装常见问题
FC6 beryl 0.2.1 编译安装手记
Ubuntu Linux上安装SSH和Vsftpd的方法
新手看招 手把手教你安装VMware虚拟机
tomcat及jdk安装配置文档
Ubuntu6.06 Linux安装Mplayer过程解析
Linux下安装RPM和TAR管理软件包的方法
Linux操作系统下以太网卡的安装及配置
嵌入式Linux 中的应用中的GTK+
对远程数据同步工具Rsync的一些了解
使用自由软件Rexx 的实现来编写脚本
介绍一个Linux下画电路图的软件
集成了大量软件包的DSL Linux
Debian和Gentoo包管理机制比较及延伸
一步一步安装服务器监视软件MRTG
pacman终极提速--metalink
介绍linux上两种rootkits检测工具
Linux下用Mtrace来检查程序内存溢出
如何用APT维护红帽企业版Linux

Unix/Linux 中的 FreeBSD, Debian, CentOS一个网卡绑定多个IP


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-15   浏览: 261 ::
收藏到网摘: n/a

1. FreeBSD:

配置/etc/rc.conf

ifconfig_interface="inet 192.168.1.5 255.255.255.0"

ifconfig_interface_alias0="inet 192.168.1.6 255.255.255.0"

注意interface是网卡设备名.

2. Debian

/etc/network/interfaces

auto eth0
iface eth0 inet static
address 192.168.1.145

netmask 255.255.255.0

network 192.168.1.0
gateway 192.168.1.1

另外一个IP

auto eth0:1
iface eth0:1 inet static
address 192.168.1.146

netmask 255.255.255.0

network 192.168.1.0
gateway 192.168.1.1

3.CentOS:

/etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0
ONBOOT=yes
HWADDR=00:0C:29:16:39:5F
NETMASK=255.255.255.0
IPADDR=192.168.1.147
GATEWAY=192.168.1.1
TYPE=Ethernet

绑定另外一个IP, 创建另外一个文件, ifcfg-eth0

DEVICE=eth0 // 注意还是eth0, 指示此IP绑定到eth0
ONBOOT=yes
HWADDR=00:0C:29:16:39:5F
NETMASK=255.255.255.0
IPADDR=192.168.1.148
GATEWAY=192.168.1.1
TYPE=Ethernet