X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=newns;h=2896cf21d942162ccfe4d2472af2e962450ad937;hb=b4463d1e1bfd7d54451005aff0f6ae1f649042d1;hp=31f1b528c80bdab325c17631adf5c6245c745895;hpb=914cdb74031df6ae068ed87376c47944fbfaf934;p=newns diff --git a/newns b/newns index 31f1b52..2896cf2 100755 --- a/newns +++ b/newns @@ -37,24 +37,26 @@ fi usage() { cat </dev/null; then echo "please install the iproute2 package" @@ -116,8 +126,7 @@ fi if $install_error; then exit 1 fi - -## end sanity checking ## +#### end sanity checking #### v0=veth0-$nn @@ -128,10 +137,10 @@ if ! $create && [[ $(readlink /proc/self/ns/net) == "$(readlink /proc/1/ns/net)" create=true fi +# make the default network namespace be named target=/run/netns/default if [[ ! -e $target && ! -L $target ]]; then mkdir -p /run/netns - # make the default network namespace be named ln -s /proc/1/ns/net $target fi @@ -146,17 +155,20 @@ fi dexec() { ip netns exec default "$@"; } -# head -n1 is defensive. Not sure if there is some weird feature +# background: head -n1 is defensive. Not sure if there is some weird feature # for 2 routes to be 0/0. gateway_if=$(ipd route list exact 0/0 | head -n1| sed -r 's/.*\s(\S+)\s*$/\1/') nat() { dexec iptables -t nat $1 POSTROUTING -o $gateway_if -j MASQUERADE \ -m comment --comment "systemd network namespace nat"; } find_network() { + if [[ $network ]]; then + return + fi found=false existing=false ips="$(ipd addr show | awk '$1 == "inet" {print $2}')" - for ((i=0; i <= 254; i++)); do + for ((i=1; i <= 254; i++)); do network=$ip_base.$i if printf "%s\n" "$ips" | grep "^${network//./\\.}" >/dev/null; then existing=true @@ -168,13 +180,13 @@ find_network() { } start() { - find_network if ! $found; then echo "$0: error: no open network found" exit 1 fi + #### begin mount namespace setup #### mkdir -p /root/mount_namespaces if ! mountpoint /root/mount_namespaces >/dev/null; then mount --bind /root/mount_namespaces /root/mount_namespaces @@ -186,6 +198,7 @@ start() { if ! mountpoint /root/mount_namespaces/$nn >/dev/null; then unshare --mount=/root/mount_namespaces/$nn fi + #### end mount namespace setup #### if $create; then @@ -193,8 +206,6 @@ start() { ip -n $nn link set dev lo up fi - - echo 1 | dexec dd of=/proc/sys/net/ipv4/ip_forward 2>/dev/null _errcatch_cleanup=stop