mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Fix loop detection
This commit is contained in:
parent
c73fa3a692
commit
b40823e548
2 changed files with 3 additions and 2 deletions
|
@ -1,8 +1,9 @@
|
|||
#!/bin/sh
|
||||
VPS=$1
|
||||
LANIP=$2
|
||||
INTF=$3
|
||||
|
||||
if [ -n "$(traceroute -q 1 -i eth1 -w 1 -n -m 5 ${VPS} | grep ${LANIP})" ]; then
|
||||
if [ -n "$(traceroute -q 1 -i ${INTF} -w 1 -n -m 5 ${VPS} | grep ${LANIP})" ]; then
|
||||
echo "detected"
|
||||
else
|
||||
echo "no loop"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue