|
@@ -42,8 +42,8 @@ if [[ $2 =~ ^(up|dhcp4-change|dhcp6-change)$ ]]; then
|
|
|
# couldn't find an existing method to determine if the interface owns the
|
|
|
# default route
|
|
|
def_route=$(/sbin/ip route list match 0.0.0.0/0 | awk '{print $3 }')
|
|
|
- def_route_int=$(/sbin/ip route get to ${def_route} | awk '{print $3}')
|
|
|
- def_route_ip=$(/sbin/ip route get to ${def_route} | awk '{print $5}')
|
|
|
+ def_route_int=$(/sbin/ip route get to ${def_route} | awk -F 'dev' '{print $2}' | head -n1 | awk '{print $1}')
|
|
|
+ def_route_ip=$(/sbin/ip route get to ${def_route} | awk -F 'src' '{print $2}' | head -n1 | awk '{print $1}')
|
|
|
if [[ ${DEVICE_IFACE} == ${def_route_int} ]]; then
|
|
|
if [ ! -f /etc/dnsmasq.d/origin-dns.conf ]; then
|
|
|
cat << EOF > /etc/dnsmasq.d/origin-dns.conf
|