Page 1 of 1

[Software]Wireless problem in network configuration

Posted: 2023-01-31 07:57
by mekrat
Hi,
I just installed Debian and after installation I had to install the wireless firmware. The wireless seems working normally but when I run a proxy app, I get this error:

Code: Select all

enable_ipv6(): no IPv6 enabled interfaces
resolv.conf contains these nameservers: 192.168.1.1 
The wireless working and I'm now connected with it, ifconfig :

Code: Select all

enp8s0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        ether 8c:16:45:e9:35:2a  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 406  bytes 34040 (33.2 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 406  bytes 34040 (33.2 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

wlp7s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1280
        inet 192.168.2.102  netmask 255.255.255.0  broadcast 192.168.2.255
        inet6 fe80::f277:3d90:86d3:2f6  prefixlen 64  scopeid 0x20<link>
        ether d8:9c:67:86:38:79  txqueuelen 1000  (Ethernet)
        RX packets 5988  bytes 2948159 (2.8 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 5833  bytes 845545 (825.7 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
but I can't see it in /etc/network/interfaces:

Code: Select all

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

Any help would be appreciated, Thank you!

Re: [Software]Wireless problem in network configuration

Posted: 2023-01-31 09:45
by sunrat
Presumably you are using the default NetworkManager for which there should be no interfaces defined in etc/network/interfaces.

Re: [Software]Wireless problem in network configuration

Posted: 2023-01-31 10:16
by mekrat
sunrat wrote: 2023-01-31 09:45 Presumably you are using the default NetworkManager for which there should be no interfaces defined in etc/network/interfaces.
Shall I configure it manually? please tell me what to do shortly, thanks.

Re: [Software]Wireless problem in network configuration

Posted: 2023-01-31 21:10
by el_koraco
Go to settings, wifi, click the cog wheel next to your wifi network, find and enable ipv6

Re: [Software]Wireless problem in network configuration

Posted: 2023-01-31 22:36
by 4D696B65
sunrat wrote: 2023-01-31 09:45 Presumably you are using the default NetworkManager for which there should be no interfaces defined in etc/network/interfaces.
You can have NetworkManager handle interfaces that are defined in /etc/network/interfaces

As root, edit /etc/NetworkManager/NetworkManager.conf and change managed=false to managed=true

Re: [Software]Wireless problem in network configuration

Posted: 2023-01-31 23:16
by sunrat
4D696B65 wrote: 2023-01-31 22:36
sunrat wrote: 2023-01-31 09:45 Presumably you are using the default NetworkManager for which there should be no interfaces defined in etc/network/interfaces.
You can have NetworkManager handle interfaces that are defined in /etc/network/interfaces

As root, edit /etc/NetworkManager/NetworkManager.conf and change managed=false to managed=true
OK, thanks. Guess I should have written NM generally doesn't need interfaces defined in /etc/network/interfaces
Does managed=true mean that NM uses those defined in the file, or does it mean it ignores them? (I don't use NM on my daily driver).

Re: [Software]Wireless problem in network configuration

Posted: 2023-01-31 23:54
by 4D696B65
sunrat wrote: 2023-01-31 23:16 Does managed=true mean that NM uses those defined in the file
yes