vmware 配置不同網段雙網絡卡。

2022-08-20 09:39:12 字數 2969 閱讀 2177

需求:由於lvs演練需要,需要配置兩張linux os網絡卡,而且是不同網段。

準備:物理機:單網絡卡

我這裡nat模式設定的網段是192.168.229.0/24網段。

到這裡,新增完了。

centos開機後,只有一張網絡卡eth0的資訊,拷貝一張eth0的配置檔案:

[root@shiyanlou network-scripts]#cd /etc/sysconfig/network-scripts

[root@shiyanlou network-scripts]#cp ifcfg-eth0 ifcfg-eth1

修改配置檔案ifcfg-eth1:

[root@shiyanlou network-scripts]# cat /etc/udev/rules.d/70-persistent-net.rules

# this file was automatically generated by the /lib/udev/write_net_rules

# program, run by the persistent-net-generator.rules rules file.

## you can modify it, as long asyou keep each rule on a single

# line, and change only the value of the name=key.

# pci device 0x8086:0x100f(e1000)

subsystem=="net", action=="add", drivers=="?*", attr=="00:0c:29:df:72:dd", attr=="1", kernel=="eth*", name="eth0"# pci device 0x8086:0x100f(e1000)

subsystem=="net", action=="add", drivers=="?*", attr=="00:0c:29:df:72:e7", attr=="1", kernel=="eth*", name="eth1"

[root@shiyanlou network-scripts]# cat ifcfg-eth1 

device=eth1

hwaddr=00:0c:29:df:72:e7

type=ethernet

uuid=a5370cfe-c84a-4b11-97ee-a96f34db9bba

onboot=yes

nm_controlled=yes

bootproto=staticipaddr=192.168.1.111netmask=255.255.255.0gateway=192.168.1.1

重啟網絡卡:service network restart。

[root@shiyanlou network-scripts]# service network restart

正在關閉介面 eth0: [確定]

正在關閉介面 eth1: [確定]

關閉環迴介面: [確定]

彈出環迴介面: [確定]

彈出介面 eth0:

正在決定 eth0 的 ip 資訊...完成。

[確定]

彈出介面 eth1: determining if ip address 192.168.1.111 is already in use fordevice eth1...

[確定]

[root@shiyanlou network-scripts]# ip a

1: lo: mtu 16436qdisc noqueue state unknown

link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00inet 127.0.0.1/8scope host lo

inet6 ::1/128scope host

valid_lft forever preferred_lft forever

2: eth0:

mtu 1500 qdisc pfifo_fast state up qlen 1000link/ether 00:0c:29:df:72:dd brd ff:ff:ff:ff:ff:ffinet192.168.229.133/24 brd 192.168.229.255 scope globaleth0inet6 fe80::20c:29ff:fedf:72dd/64scope link

valid_lft forever preferred_lft forever

3: eth1:

mtu 1500 qdisc pfifo_fast state up qlen 1000link/ether 00:0c:29:df:72:e7 brd ff:ff:ff:ff:ff:ffinet192.168.1.111/24 brd 192.168.1.255 scope globaleth1inet6 fe80::20c:29ff:fedf:72e7/64scope link

valid_lft forever preferred_lft forever

可以看到,兩塊網絡卡配置成功。

Linux 雙網絡卡 不同網段 網路互通

環境如下 現狀 一台linux主機上有兩個網絡卡eth0 和eth1 機器能訪問192網的服務資源,但不能訪問10網段的資源.要求 linux能通過eth1訪問10網段的資源 路由 網絡卡 操作 只需要新增如下明細路由就可以訪問10網段資源 後記 在操作過程中,我開始的想法是新增10的閘道器讓10的...

zynq 雙網絡卡同網段IP實現

雙網絡卡同網段ip,僅能使用乙個 配置linux下的兩個網絡卡為同網段ip位址,僅能使用eth0 ping通外網,若要使用eth1,需要關閉eth0,之後再使用eth0,就需要關閉eth1。外網對兩個網絡卡都可以ping通。開發板 ubuntu伺服器 結果顯示,均可ping通 檢視arp快取 兩個網...

雙網絡卡同網段靜態路由 設定雙網絡卡的靜態路由

windows 系統下雙網絡卡設定路由 本文主要涉及到靜態路由。二 windows 系統下設定路由 在windows 下手動設定路由主要在 dos系統中命令符下 在執行輸入 欄中鍵入 command 或者cmd 即可進行。鍵入命令 route 回車會出現大約幾十行英文說明,主要解說在 windows...