23 lines
1.1 KiB
Bash
23 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
# Script créant la connexion entre gatekeeper et les réseaux virtuels sur le cluster Proxmox Rohan
|
|
|
|
ip link add ethRohanNetArda type vxlan id 20 dev ethInfoInt dstport 4789
|
|
bridge fdb append to 00:00:00:00:00:00 dst 172.16.1.21 dev ethRohanNetArda
|
|
bridge fdb append to 00:00:00:00:00:00 dst 172.16.1.70 dev ethRohanNetArda
|
|
bridge fdb append to 00:00:00:00:00:00 dst 172.16.1.71 dev ethRohanNetArda
|
|
bridge fdb append to 00:00:00:00:00:00 dst 172.16.1.72 dev ethRohanNetArda
|
|
bridge fdb append to 00:00:00:00:00:00 dst 172.16.1.73 dev ethRohanNetArda
|
|
ip addr add 172.20.1.254/16 dev ethRohanNetArda
|
|
ip link set mtu 1450 dev ethRohanNetArda
|
|
ip link set up dev ethRohanNetArda
|
|
|
|
ip link add ethRohanNetSAE type vxlan id 21 dev ethInfoInt dstport 4789
|
|
bridge fdb append to 00:00:00:00:00:00 dst 172.16.1.70 dev ethRohanNetSAE
|
|
bridge fdb append to 00:00:00:00:00:00 dst 172.16.1.71 dev ethRohanNetSAE
|
|
bridge fdb append to 00:00:00:00:00:00 dst 172.16.1.72 dev ethRohanNetSAE
|
|
bridge fdb append to 00:00:00:00:00:00 dst 172.16.1.73 dev ethRohanNetSAE
|
|
ip addr add 172.21.1.254/16 dev ethRohanNetSAE
|
|
ip link set mtu 1450 dev ethRohanNetSAE
|
|
ip link set up dev ethRohanNetSAE
|