In scripts/start-unsecure-internet.sh there is this statement to allow DNS.
|
sudo ufw allow dns comment 'Fuchsia qemu DNS' |
On my Ubuntu 22.04 LTS machine that gives the error
ERROR: Could not find a profile matching 'dns'
and Fuschsia simply does not start.
On my machine I replaced this with this and now Fuschsia does start
sudo ufw allow proto udp from 0.0.0.0 to 255.255.255.255 port 53 comment 'Fuchsia qemu DNS'
I'm unsure if this is a problem with my machine or something else.
In
scripts/start-unsecure-internet.shthere is this statement to allow DNS.fimage/scripts/start-unsecure-internet.sh
Line 107 in 953cb72
On my Ubuntu 22.04 LTS machine that gives the error
and Fuschsia simply does not start.
On my machine I replaced this with this and now Fuschsia does start
I'm unsure if this is a problem with my machine or something else.