October 18, 201510 yr Hello folks, Am I missing some thing here? So I have a 2nd network connection to me server which drops out onto the internet via a TOR network which I bring up in my go file during boot :- ifconfig eth1 plumb ifconfig eth1 up brctl addbr br1 brctl addif br1 eth1 ifconfig br1 inet 192.168.2.100 netmask 255.255.255.0 broadcast 192.168.2.255 up Then I rejig a couple of my containers to send them out the TOR link :- RAGEid=`docker ps | grep sickrage | cut -b 1-12` RAGEProcID=`docker inspect -f '{{.State.Pid}}' $RAGEid` ln -s /proc/$RAGEProcID/ns/net /var/run/netns/$RAGEProcID ip netns exec $RAGEProcID route del default gw 192.168.2.100 ip netns exec $RAGEProcID ifconfig eth0 down ip netns exec $RAGEProcID ifconfig eth0 inet 192.168.2.20 ip netns exec $RAGEProcID route add default gw 192.168.2.1 ip netns exec $RAGEProcID ifconfig eth0 up This worked fine until I just upgraded. now it fails with :- SIOCDELRT: No such process $RAGEProcID=/var/run/netns/22539 -bash: /var/run/netns/22539=/var/run/netns/22539: No such file or directory If I cd to the /var/run/netns directory the commands work fine :- root@NAS-server:/var/run/netns# ip netns exec ./22539 ifconfig -a eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.2.20 netmask 255.255.255.0 broadcast 192.168.2.255 ether 02:42:ac:11:00:01 txqueuelen 0 (Ethernet) RX packets 42870 bytes 82948775 (79.1 MiB) I am completely stumped I can't work out why this isn't working any more, it says no such process but it's there. Any thoughts ?
October 19, 201510 yr You didn't indicate what you upgraded, and from what, to what. If you mean you upgraded unRAID, from any 6.0 to any 6.1, then you probably ran afoul of the new security rules changes. You can probably find some guidance in the plugin-oriented post here, and there are other posts too about the changes to commands needed.
Archived
This topic is now archived and is closed to further replies.