Commit 0bdad5443e3400884fa9d5e351499f6592b1e0f6
1 parent
92cadb30
Ajout affichage configuration réseau container
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
create_container.sh
... | ... | @@ -129,7 +129,6 @@ for a in $ADDRS_IPV4; do |
129 | 129 | done |
130 | 130 | |
131 | 131 | for (( i=0 ; i < ${#ARRAY_IPV4[*]} ; i++ )); do |
132 | - nsenter -t $PID -n ip a | |
133 | 132 | #Attribution de la i-ème adresse ip à l'interface i |
134 | 133 | nsenter -t $PID -n ip a add ${ARRAY_IPV4[i]} dev eth$i |
135 | 134 | #On redemarre l'interface i dans le container |
... | ... | @@ -143,6 +142,9 @@ for (( i=0 ; i < ${#ARRAY_BRIDGES[*]} ; i++ )); do |
143 | 142 | ip link set ${ARRAY_INTERFACES[i]} master ${ARRAY_BRIDGES[i]} |
144 | 143 | done |
145 | 144 | |
145 | +echo "Configuration réseau au sein du conteneur" | |
146 | +nsenter -t $PID -n ip a | |
147 | + | |
146 | 148 | #Chaine de caractère contenant toutes les interfaces du container, séparées par "," |
147 | 149 | |
148 | 150 | STRING_INTERFACE="" | ... | ... |