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
tart ip requires the user to select the right resolver, which makes the command harder to use. It can be easier it tart ip will pick the right resolver for the user based on the way the vm was run.
If the vm was run with --net-softnet: use dhcpd
If the vm was run with --net-bridged: use arp
The new mode can be named "auto"
If we don't have info on the way the vm was started tart ip can check all resolvers before it fails.
The text was updated successfully, but these errors were encountered:
nirs
changed the title
Select resolver automatically: tart ip --resolvers=auto
Select resolver automatically: tart ip --resolver=autoJan 20, 2025
If we don't have info on the way the vm was started tart ip can check all resolvers before it fails.
That's not an option, unfortunately, because it's inherently insecure: tart ip could pick up an ARP entry injected from the local network, and this network may be untrusted.
As for a more explicit option, this requires some way of communication between the tart run and tart ip.
If we don't have info on the way the vm was started tart ip can check all resolvers before it fails.
That's not an option, unfortunately, because it's inherently insecure: tart ip could pick up an ARP entry injected from the local network, and this network may be untrusted.
Good point, but this also means that using arp resolver is inherently insecure.
Good point, but this also means that using arp resolver is inherently insecure.
Not really: using an ARP resolver can be secure if the Tart user considers their local network as secure, including any other directly attached networks, such as VPN.
But the point here is that it's up to the user to explicitly communicate this, and this is why tart ip doesn't magically switch between these two methods of IP resolution.
tart ip
requires the user to select the right resolver, which makes the command harder to use. It can be easier it tart ip will pick the right resolver for the user based on the way the vm was run.The new mode can be named "auto"
If we don't have info on the way the vm was started tart ip can check all resolvers before it fails.
The text was updated successfully, but these errors were encountered: