Proxmox8を使ってみた その4 VMの設定
構成
仮想スイッチを2台用いて、vyosでNATをして下記のような構成を作成した。
・AlmaLinuxから作業用端末やインターネットに接続
・作業用端末からAlmaLinuxに接続
ができた。
AlmaLinuxの設定
GUIから下記を設定
IF名:ens18 ※デフォルトのまま
IPアドレス:172.16.11.3
サブネット:24 ※255.255.255.0のこと
デフォルトゲートウェイ:172.16.11.2
vyosの設定
LIVEモードで起動し、設定を保存できないので、install imageを実施。(デフォルト設定で実施)
設定投入後、pingで疎通確認、設定を保存後再起動。
起動後に設定が残っているか確認。
install image
reboot
configure
set service ssh
set system host-name VYOS-RT-01
set interfaces ethernet eth0 address 192.168.11.223/24
set interfaces ethernet eth1 address 172.16.11.2/24
set protocols static route 0.0.0.0/0 next-hop 192.168.11.1
ping 192.168.11.223
ping 192.168.11.222
ping 192.168.11.1
set interfaces ethernet eth0 address 192.168.11.224/24
set nat source rule 1 outbound-interface name eth0
set nat source rule 1 source address 172.16.11.3
set nat source rule 1 translation address 192.168.11.224
set nat destination rule 1 inbound-interface name eth0
set nat destination rule 1 destination address 192.168.11.224
set nat destination rule 1 translation address 172.16.11.3
commit
save
exit
poweroff
show config