2つのNICにそれぞれIPを振った。
mint@mint-GK41:~$ ifconfig
enp2s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.100.254 netmask 255.255.255.0 broadcast 192.168.100.255
inet6 fe80::83b1:43fb:211f:46c1 prefixlen 64 scopeid 0x20
ether 84:47:09:11:8c:1d txqueuelen 1000 (イーサネット)
RX packets 96 bytes 18878 (18.8 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 43 bytes 4968 (4.9 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
enp3s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.254 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::d2e1:3835:1adf:52d4 prefixlen 64 scopeid 0x20
inet6 240d:1a:2b5:c400:7f53:3833:5e20:c385 prefixlen 64 scopeid 0x0
ether 84:47:09:11:8c:1e txqueuelen 1000 (イーサネット)
RX packets 20152 bytes 5035200 (5.0 MB)
RX errors 0 dropped 6 overruns 0 frame 0
TX packets 3603 bytes 332862 (332.8 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
以後省略
このままだと通信でいる足が2本有るだけ、ルーティング情報はこんな感じ。
mint@mint-GK41:~$ netstat -rn
カーネルIP経路テーブル
受信先サイト ゲートウェイ ネットマスク フラグ MSS Window irtt インタフェース
0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 enp3s0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 enp3s0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 enp3s0
192.168.100.0 0.0.0.0 255.255.255.0 U 0 0 0 enp2s0
mint@mint-GK41:~$
中継できるように変更する。
mint@mint-GK41:~$ sudo vi sysctl.conf
~ 抜粋 ~
# Uncomment the next line to enable packet forwarding for IPv4
#net.ipv4.ip_forward=1
~ 抜粋 ~
説明書きの通り、コメントを外して中継を有効にする。
再起動して、中継されるか確認する。
中継できるようにはなったが、上位側ルータに経路情報を登録する機能がない・・・
なので、NATさせる。
※コメント投稿者のブログIDはブログ作成者のみに通知されます