You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, the vmrouter script checks the ip-forwarding interface variable like this:
if [ -n "$IF_IP_FORWARDING" ]; then
...
fi
This means that the variable will be treated as being set if it is non-empty. We should probably check its value like this: [ "$IF_IP_FORWARDING" = 1 ] to prevent errors. People would expect that by setting the value to 0 they would disable ip forwarding.
The text was updated successfully, but these errors were encountered:
Right now, the vmrouter script checks the ip-forwarding interface variable like this:
This means that the variable will be treated as being set if it is non-empty. We should probably check its value like this:
[ "$IF_IP_FORWARDING" = 1 ]
to prevent errors. People would expect that by setting the value to0
they would disable ip forwarding.The text was updated successfully, but these errors were encountered: