- Default Gateway 설정
route add default gw 192.168.88.254 eth0 <== 임시 적용
route del default gw 192.168.88.254 eth0
[centos] echo 'GATEWAY=192.168.88.254' >> /etc/sysconfig/network <== 영구 적용
[ubuntu/debian]
/etc/network/interfaces 수정
[switch] ip address add 192.168.99.37/24 dev eth0
Ubuntu> /etc/network/interfaces
- Route 설정
route add -net 아이피 netmask 넷마스크 dev 장치명
route add -net 111.222.33.44 netmask 255.255.255.255 dev eth0 <== IP HOST
route add -net 111.222.34.0 netmask 255.255.255.0 dev eth1 <== IP Network
- 2nd IP 설정
ifconfig eth0:0 192.168.1.2 netmask 255.255.255.0 up
ip address add 192.168.99.37/24 dev eth0
Ubuntu> /etc/network/interfaces
auto eth0:1
iface eth0:1 inet static
address 192.168.0.1
gateway 192.168.0.254
netmask 255.255.255.0
다중 Gateway 설정
[참조]
https://www.thegeekstuff.com/2014/08/add-route-ip-command/
http://coffeenix.net/board_view.php?bd_code=1784
[내용]
1. 새로운 route-table을 만들고(/etc/iproute2/rt_tables 에 추가)
2. 새로운 IP 대역에 대해 새로운 route table에 설정(route 설정)을 넣어주고(ip route add)
3. Ip rule 명령어로 main rule 보다 높게 올려주고(ip rule add)
4. 재부팅시 자동으로 올라오게 설정해 준다.(rc.local등에..)
https://support.hpe.com/hpsc/doc/public/display?docId=emr_na-c01388404
[내용]
Linux - eth0로 들어온 데이타는 eth0로 내보내는 라우팅환경 설정정보한 서버에 2개의 Network Interface가 연결되어 있고, 두 NIC은 같은(혹은 다른) 세부사항한 서버에 2개의 Network Interface가 연결되어 있고, 두 NIC은 같은(혹은 다른) Network상에 |
'프로...NetWork' 카테고리의 다른 글
[Linux/Porc] ip sysctl (0) | 2018.08.23 |
---|---|
[OpenWRT] Package/libjson-script (0) | 2018.08.08 |
[Link Aggregation] Linux (0) | 2018.07.23 |
[SWITCH] Flow COntrol Configure by "ethtool" (0) | 2018.07.05 |
iptables 예제 (0) | 2018.01.25 |