networking: properly set route metric for hotspot (#21265)

* Add dns priority to tethering connection

* it was route-metric

* only ipv4 is needed
pull/21270/head
ShaneSmiskol 4 years ago committed by GitHub
parent 648b60a381
commit 04ef4eeeda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      selfdrive/ui/qt/offroad/wifiManager.cc

@ -490,6 +490,7 @@ void WifiManager::addTetheringConnection() {
address["prefix"] = 24u;
connection["ipv4"]["address-data"] = QVariant::fromValue(IpConfig() << address);
connection["ipv4"]["gateway"] = "192.168.43.1";
connection["ipv4"]["route-metric"] = 1100;
connection["ipv6"]["method"] = "ignore";
QDBusInterface nm_settings(nm_service, nm_settings_path, nm_settings_iface, bus);

Loading…
Cancel
Save