【x86 工控机 配置桥接口+默认dns+ssh登录】
需求:
给新的有四个以太网接口的工控机配置网口,包括桥接,增加默认dns, 支持ssh服务,可以远程ssh登录
桥接br0和配置静态ip
brctl指令工具
br_eth.sh
#!/bin/bash
brctl addbr br0
brctl addif br0 eth0 eth1 eth2 eth3
ifconfig eth0 up
ifconfig eth1 up
ifconfig eth2 up
ifconfig eth3 up
ifconfig eth1 192.168.64.20