Configure wireless interface for multiple locationseth0 not getting disabled after setting up br0 interfaceISC DHCP Server - A Client's Uplink Is Not Working[Debian][KDE] Can't get wireless to workCan't enable net.ipv6.conf.eth0.autoconfNo internet connection debianwpa_supplicant and moving between static and dhcp networksIncrease wireless interface link speedDebian8 server : Can't resolve IP adresses or DNSHow do I set additional IP addresses on an existing interface in Debian 9?Disable Internet Access on Eth0
Is there a minimum number of transactions in a block?
declaring a variable twice in IIFE
New order #4: World
Infinite past with a beginning?
What defenses are there against being summoned by the Gate spell?
What are these boxed doors outside store fronts in New York?
How to add power-LED to my small amplifier?
"You are your self first supporter", a more proper way to say it
Can I interfere when another PC is about to be attacked?
"which" command doesn't work / path of Safari?
Why has Russell's definition of numbers using equivalence classes been finally abandoned? ( If it has actually been abandoned).
black dwarf stars and dark matter
Why is an old chain unsafe?
Why was the small council so happy for Tyrion to become the Master of Coin?
Email Account under attack (really) - anything I can do?
How can the DM most effectively choose 1 out of an odd number of players to be targeted by an attack or effect?
Why don't electron-positron collisions release infinite energy?
The magic money tree problem
How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?
When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?
Why is the design of haulage companies so “special”?
Circuitry of TV splitters
How does one intimidate enemies without having the capacity for violence?
Why CLRS example on residual networks does not follows its formula?
Configure wireless interface for multiple locations
eth0 not getting disabled after setting up br0 interfaceISC DHCP Server - A Client's Uplink Is Not Working[Debian][KDE] Can't get wireless to workCan't enable net.ipv6.conf.eth0.autoconfNo internet connection debianwpa_supplicant and moving between static and dhcp networksIncrease wireless interface link speedDebian8 server : Can't resolve IP adresses or DNSHow do I set additional IP addresses on an existing interface in Debian 9?Disable Internet Access on Eth0
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to configure my /etc/network/interfaces
to detect different access points and connect to them accordingly. This is the current state of this file:
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
auto ra0
iface ra0 inet dhcp
wpa-ssid MyNet
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
This successfully detects an ethernet connection and connects to MyNet when it is available. How do I configure it so it can detect multiple access points?
Here seems to be the answer, but I wasn't able to understand the instructions.
I have tried multiple GUIs (nm, wicd, etc.), but none of them seems to work on my laptop. Anyway, I prefer to do it via command line.
debian network-interface internet
add a comment |
I want to configure my /etc/network/interfaces
to detect different access points and connect to them accordingly. This is the current state of this file:
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
auto ra0
iface ra0 inet dhcp
wpa-ssid MyNet
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
This successfully detects an ethernet connection and connects to MyNet when it is available. How do I configure it so it can detect multiple access points?
Here seems to be the answer, but I wasn't able to understand the instructions.
I have tried multiple GUIs (nm, wicd, etc.), but none of them seems to work on my laptop. Anyway, I prefer to do it via command line.
debian network-interface internet
It is more simple than that link. I added an answer.
– Rui F Ribeiro
May 25 '17 at 19:23
@RuiFRibeiro Sorry, I didn't mentioned it in my question but I already tried wpa_supplicant and it's not working in my laptop. Also, I am really puzzled by this configuration file and would like to know how to edit it :-)
– Federico
May 25 '17 at 23:17
1
wpa_supplicant is definitely working on your laptop, because it's the only Linux software that deals with encrypted WLAN. It's possible that you are running network manager (which uses wpa_supplicant), so you need to either disable network manager, or configure it instead of wpa_supplicant (because configuring for both won't work).
– dirkt
May 26 '17 at 5:54
add a comment |
I want to configure my /etc/network/interfaces
to detect different access points and connect to them accordingly. This is the current state of this file:
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
auto ra0
iface ra0 inet dhcp
wpa-ssid MyNet
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
This successfully detects an ethernet connection and connects to MyNet when it is available. How do I configure it so it can detect multiple access points?
Here seems to be the answer, but I wasn't able to understand the instructions.
I have tried multiple GUIs (nm, wicd, etc.), but none of them seems to work on my laptop. Anyway, I prefer to do it via command line.
debian network-interface internet
I want to configure my /etc/network/interfaces
to detect different access points and connect to them accordingly. This is the current state of this file:
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
auto ra0
iface ra0 inet dhcp
wpa-ssid MyNet
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
This successfully detects an ethernet connection and connects to MyNet when it is available. How do I configure it so it can detect multiple access points?
Here seems to be the answer, but I wasn't able to understand the instructions.
I have tried multiple GUIs (nm, wicd, etc.), but none of them seems to work on my laptop. Anyway, I prefer to do it via command line.
debian network-interface internet
debian network-interface internet
edited May 25 '17 at 19:24
Rui F Ribeiro
42k1483142
42k1483142
asked May 25 '17 at 19:08
FedericoFederico
1497
1497
It is more simple than that link. I added an answer.
– Rui F Ribeiro
May 25 '17 at 19:23
@RuiFRibeiro Sorry, I didn't mentioned it in my question but I already tried wpa_supplicant and it's not working in my laptop. Also, I am really puzzled by this configuration file and would like to know how to edit it :-)
– Federico
May 25 '17 at 23:17
1
wpa_supplicant is definitely working on your laptop, because it's the only Linux software that deals with encrypted WLAN. It's possible that you are running network manager (which uses wpa_supplicant), so you need to either disable network manager, or configure it instead of wpa_supplicant (because configuring for both won't work).
– dirkt
May 26 '17 at 5:54
add a comment |
It is more simple than that link. I added an answer.
– Rui F Ribeiro
May 25 '17 at 19:23
@RuiFRibeiro Sorry, I didn't mentioned it in my question but I already tried wpa_supplicant and it's not working in my laptop. Also, I am really puzzled by this configuration file and would like to know how to edit it :-)
– Federico
May 25 '17 at 23:17
1
wpa_supplicant is definitely working on your laptop, because it's the only Linux software that deals with encrypted WLAN. It's possible that you are running network manager (which uses wpa_supplicant), so you need to either disable network manager, or configure it instead of wpa_supplicant (because configuring for both won't work).
– dirkt
May 26 '17 at 5:54
It is more simple than that link. I added an answer.
– Rui F Ribeiro
May 25 '17 at 19:23
It is more simple than that link. I added an answer.
– Rui F Ribeiro
May 25 '17 at 19:23
@RuiFRibeiro Sorry, I didn't mentioned it in my question but I already tried wpa_supplicant and it's not working in my laptop. Also, I am really puzzled by this configuration file and would like to know how to edit it :-)
– Federico
May 25 '17 at 23:17
@RuiFRibeiro Sorry, I didn't mentioned it in my question but I already tried wpa_supplicant and it's not working in my laptop. Also, I am really puzzled by this configuration file and would like to know how to edit it :-)
– Federico
May 25 '17 at 23:17
1
1
wpa_supplicant is definitely working on your laptop, because it's the only Linux software that deals with encrypted WLAN. It's possible that you are running network manager (which uses wpa_supplicant), so you need to either disable network manager, or configure it instead of wpa_supplicant (because configuring for both won't work).
– dirkt
May 26 '17 at 5:54
wpa_supplicant is definitely working on your laptop, because it's the only Linux software that deals with encrypted WLAN. It's possible that you are running network manager (which uses wpa_supplicant), so you need to either disable network manager, or configure it instead of wpa_supplicant (because configuring for both won't work).
– dirkt
May 26 '17 at 5:54
add a comment |
2 Answers
2
active
oldest
votes
To address multiple wifi configs/ssids, you would better work at the wpa_supplicant
level.
Just leave your interface as:
auto ra0
iface ra0 inet dhcp
Install wpa_supplicant with:
apt get install wpasupplicant
You can define several locations in wpa_supplicant.conf
, where the ssid with determine with configuration will be used. As in:
network=
ssid="ssid2"
psk="ssid2 PASSWORD"
network=
ssid="ssid1"
psk="ssid1 PASSWORD"
Restart the service each time you add a configuration for a new SSID.
When connection to an AP, depending on the SSID name, wpa_supplicant
with automagically select the corresponding configuration.
add a comment |
In order to configure /etc/network/interfaces
to work with multiple locations, you have to understand the difference between logical and physical interfaces. Physical interfaces correspond to the hardware devices that you have installed in your system and they are identified by a particular naming scheme (wlan0, wlan1, eth0, ra0, etc).
In your /etc/network/interfaces
, you can specify only one configuration for each physical interface, so this is where logical interfaces come into play. You can have multiple logical interfaces for one physical interface. This is called mapping. To map a logical interface to a physical interface, you add this to /etc/network/interfaces
mapping ra0 # map physical interface ra0...
map home work # ...to 'home' and 'work' logical interfaces
Then, you write the configuration for each of this interfaces:
iface home inet dhcp # configuration stanza for 'home' logical interface
wpa-ssid Home
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
iface work inet dhcp # configuration stanza for 'work' logical interface
wpa-ssid Work
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
Of course, this is not going to work because the system doesn't know which interface to use, so we'll use guessnet
to help the system to choose a configuration.
sudo apt-get install guessnet
Then, we use guessnet
in the mapping stanza:
mapping ra0
script /usr/sbin/guessnet-ifupdown # <-- We added this
map home work
Guessnet
acts by testing the networks according to some criteria (IP, ESSID, MAC addresses) and choosing the configuration that doesn't fail those tests. In the following example, if there is a network with ESSID 'Work' available, the interface ra0
that we defined earlier, is going to connect to it and apply this configuration:
iface work inet dhcp
test wireless essid Work # We test if the ESSID of the network is 'Work'
wpa-ssid Work
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f367277%2fconfigure-wireless-interface-for-multiple-locations%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
To address multiple wifi configs/ssids, you would better work at the wpa_supplicant
level.
Just leave your interface as:
auto ra0
iface ra0 inet dhcp
Install wpa_supplicant with:
apt get install wpasupplicant
You can define several locations in wpa_supplicant.conf
, where the ssid with determine with configuration will be used. As in:
network=
ssid="ssid2"
psk="ssid2 PASSWORD"
network=
ssid="ssid1"
psk="ssid1 PASSWORD"
Restart the service each time you add a configuration for a new SSID.
When connection to an AP, depending on the SSID name, wpa_supplicant
with automagically select the corresponding configuration.
add a comment |
To address multiple wifi configs/ssids, you would better work at the wpa_supplicant
level.
Just leave your interface as:
auto ra0
iface ra0 inet dhcp
Install wpa_supplicant with:
apt get install wpasupplicant
You can define several locations in wpa_supplicant.conf
, where the ssid with determine with configuration will be used. As in:
network=
ssid="ssid2"
psk="ssid2 PASSWORD"
network=
ssid="ssid1"
psk="ssid1 PASSWORD"
Restart the service each time you add a configuration for a new SSID.
When connection to an AP, depending on the SSID name, wpa_supplicant
with automagically select the corresponding configuration.
add a comment |
To address multiple wifi configs/ssids, you would better work at the wpa_supplicant
level.
Just leave your interface as:
auto ra0
iface ra0 inet dhcp
Install wpa_supplicant with:
apt get install wpasupplicant
You can define several locations in wpa_supplicant.conf
, where the ssid with determine with configuration will be used. As in:
network=
ssid="ssid2"
psk="ssid2 PASSWORD"
network=
ssid="ssid1"
psk="ssid1 PASSWORD"
Restart the service each time you add a configuration for a new SSID.
When connection to an AP, depending on the SSID name, wpa_supplicant
with automagically select the corresponding configuration.
To address multiple wifi configs/ssids, you would better work at the wpa_supplicant
level.
Just leave your interface as:
auto ra0
iface ra0 inet dhcp
Install wpa_supplicant with:
apt get install wpasupplicant
You can define several locations in wpa_supplicant.conf
, where the ssid with determine with configuration will be used. As in:
network=
ssid="ssid2"
psk="ssid2 PASSWORD"
network=
ssid="ssid1"
psk="ssid1 PASSWORD"
Restart the service each time you add a configuration for a new SSID.
When connection to an AP, depending on the SSID name, wpa_supplicant
with automagically select the corresponding configuration.
answered May 25 '17 at 19:17
Rui F RibeiroRui F Ribeiro
42k1483142
42k1483142
add a comment |
add a comment |
In order to configure /etc/network/interfaces
to work with multiple locations, you have to understand the difference between logical and physical interfaces. Physical interfaces correspond to the hardware devices that you have installed in your system and they are identified by a particular naming scheme (wlan0, wlan1, eth0, ra0, etc).
In your /etc/network/interfaces
, you can specify only one configuration for each physical interface, so this is where logical interfaces come into play. You can have multiple logical interfaces for one physical interface. This is called mapping. To map a logical interface to a physical interface, you add this to /etc/network/interfaces
mapping ra0 # map physical interface ra0...
map home work # ...to 'home' and 'work' logical interfaces
Then, you write the configuration for each of this interfaces:
iface home inet dhcp # configuration stanza for 'home' logical interface
wpa-ssid Home
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
iface work inet dhcp # configuration stanza for 'work' logical interface
wpa-ssid Work
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
Of course, this is not going to work because the system doesn't know which interface to use, so we'll use guessnet
to help the system to choose a configuration.
sudo apt-get install guessnet
Then, we use guessnet
in the mapping stanza:
mapping ra0
script /usr/sbin/guessnet-ifupdown # <-- We added this
map home work
Guessnet
acts by testing the networks according to some criteria (IP, ESSID, MAC addresses) and choosing the configuration that doesn't fail those tests. In the following example, if there is a network with ESSID 'Work' available, the interface ra0
that we defined earlier, is going to connect to it and apply this configuration:
iface work inet dhcp
test wireless essid Work # We test if the ESSID of the network is 'Work'
wpa-ssid Work
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
add a comment |
In order to configure /etc/network/interfaces
to work with multiple locations, you have to understand the difference between logical and physical interfaces. Physical interfaces correspond to the hardware devices that you have installed in your system and they are identified by a particular naming scheme (wlan0, wlan1, eth0, ra0, etc).
In your /etc/network/interfaces
, you can specify only one configuration for each physical interface, so this is where logical interfaces come into play. You can have multiple logical interfaces for one physical interface. This is called mapping. To map a logical interface to a physical interface, you add this to /etc/network/interfaces
mapping ra0 # map physical interface ra0...
map home work # ...to 'home' and 'work' logical interfaces
Then, you write the configuration for each of this interfaces:
iface home inet dhcp # configuration stanza for 'home' logical interface
wpa-ssid Home
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
iface work inet dhcp # configuration stanza for 'work' logical interface
wpa-ssid Work
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
Of course, this is not going to work because the system doesn't know which interface to use, so we'll use guessnet
to help the system to choose a configuration.
sudo apt-get install guessnet
Then, we use guessnet
in the mapping stanza:
mapping ra0
script /usr/sbin/guessnet-ifupdown # <-- We added this
map home work
Guessnet
acts by testing the networks according to some criteria (IP, ESSID, MAC addresses) and choosing the configuration that doesn't fail those tests. In the following example, if there is a network with ESSID 'Work' available, the interface ra0
that we defined earlier, is going to connect to it and apply this configuration:
iface work inet dhcp
test wireless essid Work # We test if the ESSID of the network is 'Work'
wpa-ssid Work
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
add a comment |
In order to configure /etc/network/interfaces
to work with multiple locations, you have to understand the difference between logical and physical interfaces. Physical interfaces correspond to the hardware devices that you have installed in your system and they are identified by a particular naming scheme (wlan0, wlan1, eth0, ra0, etc).
In your /etc/network/interfaces
, you can specify only one configuration for each physical interface, so this is where logical interfaces come into play. You can have multiple logical interfaces for one physical interface. This is called mapping. To map a logical interface to a physical interface, you add this to /etc/network/interfaces
mapping ra0 # map physical interface ra0...
map home work # ...to 'home' and 'work' logical interfaces
Then, you write the configuration for each of this interfaces:
iface home inet dhcp # configuration stanza for 'home' logical interface
wpa-ssid Home
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
iface work inet dhcp # configuration stanza for 'work' logical interface
wpa-ssid Work
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
Of course, this is not going to work because the system doesn't know which interface to use, so we'll use guessnet
to help the system to choose a configuration.
sudo apt-get install guessnet
Then, we use guessnet
in the mapping stanza:
mapping ra0
script /usr/sbin/guessnet-ifupdown # <-- We added this
map home work
Guessnet
acts by testing the networks according to some criteria (IP, ESSID, MAC addresses) and choosing the configuration that doesn't fail those tests. In the following example, if there is a network with ESSID 'Work' available, the interface ra0
that we defined earlier, is going to connect to it and apply this configuration:
iface work inet dhcp
test wireless essid Work # We test if the ESSID of the network is 'Work'
wpa-ssid Work
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
In order to configure /etc/network/interfaces
to work with multiple locations, you have to understand the difference between logical and physical interfaces. Physical interfaces correspond to the hardware devices that you have installed in your system and they are identified by a particular naming scheme (wlan0, wlan1, eth0, ra0, etc).
In your /etc/network/interfaces
, you can specify only one configuration for each physical interface, so this is where logical interfaces come into play. You can have multiple logical interfaces for one physical interface. This is called mapping. To map a logical interface to a physical interface, you add this to /etc/network/interfaces
mapping ra0 # map physical interface ra0...
map home work # ...to 'home' and 'work' logical interfaces
Then, you write the configuration for each of this interfaces:
iface home inet dhcp # configuration stanza for 'home' logical interface
wpa-ssid Home
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
iface work inet dhcp # configuration stanza for 'work' logical interface
wpa-ssid Work
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
Of course, this is not going to work because the system doesn't know which interface to use, so we'll use guessnet
to help the system to choose a configuration.
sudo apt-get install guessnet
Then, we use guessnet
in the mapping stanza:
mapping ra0
script /usr/sbin/guessnet-ifupdown # <-- We added this
map home work
Guessnet
acts by testing the networks according to some criteria (IP, ESSID, MAC addresses) and choosing the configuration that doesn't fail those tests. In the following example, if there is a network with ESSID 'Work' available, the interface ra0
that we defined earlier, is going to connect to it and apply this configuration:
iface work inet dhcp
test wireless essid Work # We test if the ESSID of the network is 'Work'
wpa-ssid Work
wpa-psk 00d8f778e1e86be0961aa767564d7364ee44fcbd704e4e31ee6c4af0f855c32f
answered Jun 12 '17 at 19:22
FedericoFederico
1497
1497
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f367277%2fconfigure-wireless-interface-for-multiple-locations%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
-debian, internet, network-interface
It is more simple than that link. I added an answer.
– Rui F Ribeiro
May 25 '17 at 19:23
@RuiFRibeiro Sorry, I didn't mentioned it in my question but I already tried wpa_supplicant and it's not working in my laptop. Also, I am really puzzled by this configuration file and would like to know how to edit it :-)
– Federico
May 25 '17 at 23:17
1
wpa_supplicant is definitely working on your laptop, because it's the only Linux software that deals with encrypted WLAN. It's possible that you are running network manager (which uses wpa_supplicant), so you need to either disable network manager, or configure it instead of wpa_supplicant (because configuring for both won't work).
– dirkt
May 26 '17 at 5:54