Can't torify ubuntu

Hello
I’m trying to use ubuntu like workstation but the ip address is always that of vpn on my host. I have changed network in gateway

filename:

Whonix 11: /etc/network/interfaces
Whonix 12: /etc/network/interfaces.d/30_non-qubes-whonix

If you are using a graphical Whonix-Gateway, complete the following steps:

kdesudo kate filename

kdesudo kate doesn’t work then I used kdesudo kwrite.

After I have to modify eth0

auto eth0
iface eth0 inet dhcp
iface eth0 inet static
increment last octet of IP address on additional workstations
address 10.152.152.12
netmask 255.255.192.0
#network 10.152.152.0
#broadcast 10.152.152.255
gateway 10.152.152.10

(near iface and increment there is #)in gateway filename there are ## for comment and # for the configuration. I tried to use standard model and that above ( without #) but nothing. In ubuntu I changed this file

sudo nano /etc/resolv.conf

deleted all and wrote only

nameserver 10.152.152.10

Any tips?

You’re on the right track.

I don’t understand what you’re saying here. Both # and ## are comments that have no affect on your configuration. Any line that begins with # is just a comment.

(Assuming VirtualBox-Whonix) your network config should look like:

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
       address 10.152.152.12
       netmask 255.255.192.0
       gateway 10.152.152.10

All other lines should begin with #.

Your /etc/resolv.conf is correct.