Initial commit

This commit is contained in:
Rich
2023-01-06 10:20:48 +00:00
commit 4d9ebc4684
14 changed files with 1538 additions and 0 deletions

19
dante/run.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
[[ -z ${INTERFACE} ]] && INTERFACE=nordlynx
sed -i 's@nordlynx@'"${INTERFACE}"'@g' /etc/danted.conf
service danted restart
while [ 1 ]
do
ifconfig ${INTERFACE}
res=$?
if [ $res -eq 1 ]
then
sleep 5
exit 0
fi
sleep 10
done