centos雙網絡卡配置

2021-09-30 10:26:35 字數 1130 閱讀 3271

對於學校來說;鳥哥的這種配置方案挺可行的。

然後就會有一塊網路界面對內(假設為eth1),一塊網路介面對外(eth0)。

一、配置//etc/sysconfig/network-scripts/ifcfg-eth0

1、如果是自動分配ip:示例

device=eth0

onboot=yes

bootproto=dhcp

type=ethernet

#實體地址

hwaddr=00:1a:a0:bd:9e:f8 #eth0的實體地址

2、如果是分配靜態ip:示例

device=eth0

onboot=yes

bootproto=static

type=ethernet

#實體地址

hwaddr=00:1a:a0:bd:9e:f8 #eth0的實體地址

ipaddr=202.38.71.70 #這個為公共ip;當然因為處於校園區域網;所以這裡是私有ip

gateway=202.38.71.254

netmask=255.255.255.0

dns1=202.38.64.1

dns2=8.8.8.8

二、配置//etc/sysconfig/network-scripts/ifcfg-eth1

device=eth1

onboot=yes

bootproto=static

type=ethernet

#eth1實體地址

hwaddr=00:40:b8:50:0f:12

ipaddr=192.168.22.1 #此為區域網內部的閘道器

netmask=255.255.255.0

三、配置iptables

iptables -t nat -a postrouting -o eth0 -s 192.168.22.0/24 -j snat --to-source 202.38.71.70  #配置埠**

四、配置開機啟動

1、ip與mac:

2、連上internet:

centos 雙網絡卡配置

對centname計算機進行配置 內網 em1 192.168.10.201 外網 em2 202.0.146.223 vi etc sysconfig network scripts ifcfg em2修改以下配置 device em2 type ethernet uuid d056c517 48...

CentOS雙網絡卡配置預設路由

centos使用雙網絡卡時,如果要指定其中乙個網絡卡的閘道器作為預設路由,不能直接用route命令進行修改,或者只是刪除其中乙個預設路由。例如 expert sec cpsc 8001sz 0 ifconfig eth0 link encap ethernet hwaddr 00 50 56 a6 ...

CentOS雙網絡卡配置預設路由

centos雙網絡卡,我們只需要乙個預設路由,如果兩個都有或都沒有會有一系列的問題 1.先route n 檢視路由配置 2.如果需要將 ifcfg eth1 設定為預設路由 修改 etc sysconfig network scripts 下 ifcfg eth1 網絡卡配置檔案中 defroute...