#!/bin/bash | |
# Configuration steps specific to docker instances of node A | |
cat > /home/integ/.ssh/config <<EOF | |
Host 192.168.*.* | |
StrictHostKeyChecking no | |
EOF | |
chown integ:integ /home/integ/.ssh/config | |
ip route add 192.168.3.0/24 via 192.168.2.3 | |
ip -6 route add fd03::/64 via fd02::3 |