Ajout script de création des VXLAN sur gatekeeper
This commit is contained in:
parent
f8e1b44a93
commit
0c28a1dc9e
17
gatekeeper/rohannet_setup.sh
Normal file
17
gatekeeper/rohannet_setup.sh
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Script créant la connexion entre gatekeeper et les réseaux virtuels sur le cluster Proxmox Rohan
|
||||||
|
|
||||||
|
ip link add ethRohanNetSAE type vxlan id 17 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
|
||||||
|
ip addr add 172.17.1.254/16 dev ethRohanNetSAE
|
||||||
|
ip link set mtu 1450 dev ethRohanNetSAE
|
||||||
|
ip link set up dev ethRohanNetSAE
|
||||||
|
|
||||||
|
ip link add ethRohanNetArda type vxlan id 18 dev ethInfoInt dstport 4789
|
||||||
|
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
|
||||||
|
ip addr add 172.18.1.254/16 dev ethRohanNetArda
|
||||||
|
ip link set mtu 1450 dev ethRohanNetArda
|
||||||
|
ip link set up dev ethRohanNetArda
|
Loading…
Reference in New Issue
Block a user