Modifications to Split Stack Config

Setup params needed for dGSM
This commit is contained in:
Keith Whyte 2021-03-01 12:09:43 +01:00
parent 1176683f7c
commit f14e2c7a04
6 changed files with 38 additions and 3 deletions

View file

@ -0,0 +1,10 @@
#!/bin/sh
/sbin/ip route show 239.192.23.42 | grep rhizomatica > /dev/null
if [ $? -ne 0 ]; then
/sbin/ip route add 239.192.23.42 dev rhizomatica
if [ $? -ne 0 ]; then
exit 1
fi
exit 0
fi