Re: [PATCH 3/4 v2] platform: wifi: add support for wake-on-wlan

2017-01-19 Thread Thomas Haller
On Wed, 2017-01-18 at 17:32 +0100, Simon Fels wrote: > --- a/src/platform/wifi/wifi-utils-nl80211.c > +++ b/src/platform/wifi/wifi-utils-nl80211.c > @@ -469,6 +469,45 @@ nla_put_failure: >   return FALSE; >  } >   > +static gboolean > +wifi_nl80211_set_wake_on_wlan (WifiData *data, >

Re: [PATCH 4/4 v2] devices: wifi: enable wake-on-wlan when device is enabled

2017-01-19 Thread Thomas Haller
if (wowl != > NM_SETTING_WIRELESS_WAKE_ON_WLAN_DEFAULT) > + goto found; > + } > + > + value = nm_config_data_get_connection_default > (NM_CONFIG_GET_DATA, > +    "wireless.wak > e-on-wlan", > +   

Re: [PATCH 3/4 v2] platform: wifi: add support for wake-on-wlan

2017-01-19 Thread Thomas Haller
On Wed, 2017-01-18 at 17:32 +0100, Simon Fels wrote: > --- >  src/platform/nm-linux-platform.c   |  8 +++ >  src/platform/nm-platform.c | 10 + >  src/platform/nm-platform.h |  3 +++ >  src/platform/wifi/wifi-utils-nl80211.c | 40 >

Re: [PATCH 2/4 v3] cli: add support for wake-on-wlan properties

2017-01-19 Thread Thomas Haller
On Wed, 2017-01-18 at 17:32 +0100, Simon Fels wrote: > --- >  clients/cli/settings.c | 66 > +- >  1 file changed, 65 insertions(+), 1 deletion(-) > > diff --git a/clients/cli/settings.c b/clients/cli/settings.c > index 40cf975..7cb2d3e 100644 > ---

Re: [PATCH 1/4 v2] libnm-core: add wake-on-wlan configuration items

2017-01-19 Thread Thomas Haller
On Wed, 2017-01-18 at 17:32 +0100, Simon Fels wrote: > --- > + /** > +  * NMSettingWireless:wake-on-wlan: > +  * > +  * The #NMSettingWirelessWakeOnWLan options to enable. Not > all devices support all options. > +  *

Re: [PATCH 1/4 v2] libnm-core: add wake-on-wlan configuration items

2017-01-19 Thread Simon Fels
PROP_WAKE_ON_WLAN_PASSWORD, >> >> LAST_PROP >> }; >> @@ -939,6 +943,43 @@ nm_setting_wireless_get_security >> (NMSetting*setting, >> return NULL; >> } >> >> +/** >> + * nm_setting_wireless_get_wake_on_wlan: >> + * @setting: the #NMSettin

Re: [PATCH 1/4 v2] libnm-core: add wake-on-wlan configuration items

2017-01-18 Thread Thomas Haller
LL; >  } >   > +/** > + * nm_setting_wireless_get_wake_on_wlan: > + * @setting: the #NMSettingWireless > + * > + * Returns the Wake-on-WLAN options enabled for the connection > + * > + * Returns: the Wake-on-WLAN options > + * > + * Since: 1.6 >

[PATCH 0/4 v2] Implement support for Wake-on-WLAN

2017-01-18 Thread Simon Fels
(4): libnm-core: add wake-on-wlan configuration items cli: add support for wake-on-wlan properties platform: wifi: add support for wake-on-wlan devices: wifi: enable wake-on-wlan when device is enabled clients/cli/settings.c | 66 +- libnm-core/nm

[PATCH 3/4 v2] platform: wifi: add support for wake-on-wlan

2017-01-18 Thread Simon Fels
--- src/platform/nm-linux-platform.c | 8 +++ src/platform/nm-platform.c | 10 + src/platform/nm-platform.h | 3 +++ src/platform/wifi/wifi-utils-nl80211.c | 40 ++ src/platform/wifi/wifi-utils-private.h | 3 +++

[PATCH 1/4 v2] libnm-core: add wake-on-wlan configuration items

2017-01-18 Thread Simon Fels
}; @@ -939,6 +943,43 @@ nm_setting_wireless_get_security (NMSetting*setting, return NULL; } +/** + * nm_setting_wireless_get_wake_on_wlan: + * @setting: the #NMSettingWireless + * + * Returns the Wake-on-WLAN options enabled for the connection + * + * Returns: the Wake-on-WLAN options

[PATCH 2/4 v3] cli: add support for wake-on-wlan properties

2017-01-18 Thread Simon Fels
--- clients/cli/settings.c | 66 +- 1 file changed, 65 insertions(+), 1 deletion(-) diff --git a/clients/cli/settings.c b/clients/cli/settings.c index 40cf975..7cb2d3e 100644 --- a/clients/cli/settings.c +++ b/clients/cli/settings.c @@ -214,6

Re: [PATCH 1/4] libnm-core: add wake-on-wlan configuration items

2017-01-18 Thread Simon Fels
e-enum-types.c >> +++ b/libnm-core/nm-core-enum-types.c > > these files are generated, they shall not be part of the patchset. > > >> +/** >> + * nm_setting_wireless_get_wake_on_wlan: >> + * @setting: the #NMSettingWireless >> + * >> + * Returns the Wake-on-WLAN opti

Re: [PATCH 1/4] libnm-core: add wake-on-wlan configuration items

2017-01-18 Thread Thomas Haller
ed, they shall not be part of the patchset. > +/** > + * nm_setting_wireless_get_wake_on_wlan: > + * @setting: the #NMSettingWireless > + * > + * Returns the Wake-on-WLAN options enabled for the connection > + * > + * Returns: the Wake-on-WLAN options > + * > + * Since: 1.2 > + */ you cannot add new API after

[PATCH 4/4] devices: wifi: enable wake-on-wlan when device is enabled

2017-01-17 Thread Simon Fels
, + "wireless.wake-on-wlan", + device); + + if (value) { + wowl = _nm_utils_ascii_str_to_int64 (value, 10, + NM_SETTING_WIRELESS_WAKE_ON

[PATCH 1/4] libnm-core: add wake-on-wlan configuration items

2017-01-17 Thread Simon Fels
wowl; + char *wowl_password; } NMSettingWirelessPrivate; enum { @@ -79,6 +81,8 @@ enum { PROP_HIDDEN, PROP_POWERSAVE, PROP_MAC_ADDRESS_RANDOMIZATION, + PROP_WAKE_ON_WLAN, + PROP_WAKE_ON_WLAN_PASSWORD, LAST_PROP }; @@ -850,6 +854,43 @@ nm_setting_wi

[PATCH 2/4] cli: add support for wake-on-wlan properties

2017-01-17 Thread Simon Fels
--- clients/cli/settings.c | 65 +- 1 file changed, 64 insertions(+), 1 deletion(-) diff --git a/clients/cli/settings.c b/clients/cli/settings.c index 1651aab..cc34cd2 100644 --- a/clients/cli/settings.c +++ b/clients/cli/settings.c @@ -205,6

[PATCH 0/4] Implement support for Wake-on-WLAN

2017-01-17 Thread Simon Fels
Hey everyone, this patchset adds support for Wake-on-WLAN. The major part of the set adds two new necessary configuration items (wifi.wake-on-wlan and wifi.wake-on-wlan-password) which are modeled after the existing ones for ethernet (e.g. 802-3-ethernet.wake-on-lan). Wake-on-WLAN itself

[PATCH 3/4] platform: wifi: add support for wake-on-wlan

2017-01-17 Thread Simon Fels
--- src/platform/nm-linux-platform.c | 8 +++ src/platform/nm-platform.c | 10 + src/platform/nm-platform.h | 3 +++ src/platform/wifi/wifi-utils-nl80211.c | 40 ++ src/platform/wifi/wifi-utils-private.h | 3 +++

Re: [PATCH] linux: check the prefix 'wlan' for WiFi device as the last fallback method

2016-12-05 Thread Beniamino Galvani
On Mon, Dec 05, 2016 at 12:18:15PM +0100, Thomas Haller wrote: > On Mon, 2016-12-05 at 15:37 +0800, Shih-Yuan Lee (FourDollars) wrote: > > The sysfs path may not exist due to race conditions while accessing > > sysfs. > > > > It's better to check the prefix 'wlan'

Re: [PATCH] linux: check the prefix 'wlan' for WiFi device as the last fallback method

2016-12-05 Thread Thomas Haller
On Mon, 2016-12-05 at 15:37 +0800, Shih-Yuan Lee (FourDollars) wrote: > The sysfs path may not exist due to race conditions while accessing > sysfs. > > It's better to check the prefix 'wlan' as the last fallback method. > > For example, 'wlan0' has been renamed to 'wlp1s

[PATCH] linux: check the prefix 'wlan' for WiFi device as the last fallback

2016-12-04 Thread Shih-Yuan Lee (FourDollars)
check the prefix 'wlan' as the last fallback method. +* +* For example, 'wlan0' has been renamed to 'wlp1s0', but it's still checking +* 'wlan0' above so it will always fail. +*/ + if (g_str_has_prefix (iface, "wlan")) + return TRUE;

[PATCH] linux: check the prefix 'wlan' for WiFi device as the last fallback method

2016-12-04 Thread Shih-Yuan Lee (FourDollars)
The sysfs path may not exist due to race conditions while accessing sysfs. It's better to check the prefix 'wlan' as the last fallback method. For example, 'wlan0' has been renamed to 'wlp1s0', but it's still checking 'wlan0' above so it will always fail. You can see this problem below. Nov

Re: NM+WPA_Supplicant+Systemd trouble: can't connect to WLAN

2014-09-11 Thread Dan Williams
On Tue, 2014-09-09 at 05:42 -0400, Pavel Simerda wrote: - Original Message - From: Mark Elkins m...@posix.co.za To: networkmanager-list@gnome.org Sent: Saturday, September 6, 2014 10:55:18 AM Subject: Re: NM+WPA_Supplicant+Systemd trouble: can't connect to WLAN I run Gentoo

Re: NM+WPA_Supplicant+Systemd trouble: can't connect to WLAN

2014-09-09 Thread Pavel Simerda
to WLAN Thanks Mark - 1. I don't see how daemons could be starting in a wrong order, in my particular case. WPA Supp is not started except by NM. NM spawns its own instance of WPA Supp, and it's the only instance of it I have. Am I missing something? Should there be another one, e.g

Re: NM+WPA_Supplicant+Systemd trouble: can't connect to WLAN

2014-09-09 Thread Pavel Simerda
- Original Message - From: Mark Elkins m...@posix.co.za To: networkmanager-list@gnome.org Sent: Saturday, September 6, 2014 10:55:18 AM Subject: Re: NM+WPA_Supplicant+Systemd trouble: can't connect to WLAN I run Gentoo and had huge issues when upgrading to Systemd. I chose to go

Re: NM+WPA_Supplicant+Systemd trouble: can't connect to WLAN

2014-09-06 Thread Mark Elkins
I run Gentoo and had huge issues when upgrading to Systemd. I chose to go Mate to get back the old feel. Created the following script which unless I run, Wifi will not work. ie Things currently currently appear to start up in the wrong order. systemctl stop NetworkManager killall -9

Re: NM+WPA_Supplicant+Systemd trouble: can't connect to WLAN

2014-09-06 Thread Nickolai Dobrynin
Thanks Mark - 1. I don't see how daemons could be starting in a wrong order, in my particular case. WPA Supp is not started except by NM. NM spawns its own instance of WPA Supp, and it's the only instance of it I have. Am I missing something? Should there be another one, e.g.,

NM+WPA_Supplicant+Systemd trouble: can't connect to WLAN

2014-09-05 Thread Nickolai Dobrynin
Dear all, I've Googled my stomach off and tried to get help on Gentoo (my distro of choice) forums: http://forums.gentoo.org/viewtopic-t-998728.html?sid=87a26a7434ce0489cf77789f1377f141 Nobody knows anything, so here I am. Long story short: I can't get the NM+WPA_Supplicant+Systemd combo to

Command for toggling WLAN on/off

2014-05-14 Thread Kai
Dear all, is there any command, I can use to set a shortcut for toggling wlan on/off? That would be great! Sincerly, Kai ___ networkmanager-list mailing list networkmanager-list@gnome.org https://mail.gnome.org/mailman/listinfo/networkmanager-list

Re: Command for toggling WLAN on/off

2014-05-14 Thread Dan Williams
On Wed, 2014-05-14 at 06:39 +0200, Kai wrote: Dear all, is there any command, I can use to set a shortcut for toggling wlan on/off? That would be great! If you're using NM 0.9.8.x, you can use: nmcli nm wifi [on | off] If you're using NM 0.9.9+, you can use: nmcli radio wifi [on | off

Re: nfs home dir, wlan/vpn, network manager

2014-02-04 Thread Pavel Simerda
- Original Message - From: Darod Zyree darodzy...@gmail.com To: networkmanager-list@gnome.org Sent: Monday, January 27, 2014 11:46:07 PM Subject: nfs home dir, wlan/vpn, network manager Hi, how does one configure network-manger to start in/during GDM. NetworkManager is a system

nfs home dir, wlan/vpn, network manager

2014-01-27 Thread Darod Zyree
Hi, how does one configure network-manger to start in/during GDM. Users that use laptops and have NFS home directories need to be able to set up wlan/vpn before they actually log in so that autofs can mount their home directory. For this test case centos 6.5 was used; gnome 2.28; network

How to find out if my WLAN uses WPA or WPA2 security?

2013-06-19 Thread Paul Menzel
Dear NetworkManager folks, following a discussion on the linux-wireless list [1], I want to find out if my WLAN uses WPA(1) or WPA2 security. In his reply Larry Finger suggests to use `iwlist scan` but I do want to avoid installing the package containing this and wonder if NetworkManager exposes

Re: How to find out if my WLAN uses WPA or WPA2 security?

2013-06-19 Thread Dan Williams
On Wed, 2013-06-19 at 09:37 +0200, Paul Menzel wrote: Dear NetworkManager folks, following a discussion on the linux-wireless list [1], I want to find out if my WLAN uses WPA(1) or WPA2 security. In his reply Larry Finger suggests to use `iwlist scan` but I do want to avoid installing

Prioritizing between wwan and wlan

2012-10-29 Thread Marius Kotsbak
Hi! Out of a IRC discussion, I got the impression that NM should prioritize wifi connections over mobile connections, but I don't see it: Only wlan connected: marius@marius-T1005:~$ route -n Kernel IP routing table Destination Gateway Genmask Flags Metric RefUse Iface

Re: Prioritizing between wwan and wlan

2012-10-29 Thread Marius Kotsbak
2012/10/29 Marius Kotsbak mar...@kotsbak.com Both wlan and 3G connected: marius@marius-T1005:~$ route -n Kernel IP routing table Destination Gateway Genmask Flags Metric RefUse Iface 0.0.0.0 89.9.198.2300.0.0.0 UG0 00 wwan0

Re: Prioritizing between wwan and wlan

2012-10-29 Thread Marius Kotsbak
2012/10/29 Marius Kotsbak mar...@kotsbak.com Hi! Out of a IRC discussion, I got the impression that NM should prioritize wifi connections over mobile connections, but I don't see it: I think this behaviour causes this bug:

Re: Multiple WLAN Routers with same SSID

2012-09-24 Thread Dan Williams
mailto:pfr...@gmx.de wrote: In fact (here in Germany) german telecom delivered WLAN-routers which all have preset the same (E)SSID. Shall i go to every household (even if i can locate them) in my environment to tell them to change their SSID ? That is bad

Re: Multiple WLAN Routers with same SSID

2012-09-22 Thread Petric Frank
) german telecom delivered WLAN-routers which all have preset the same (E)SSID. Shall i go to every household (even if i can locate them) in my environment to tell them to change their SSID ? That is bad (but it seems like Linksys routers are the same), but you should

Re: Multiple WLAN Routers with same SSID

2012-09-22 Thread Bjørn Mork
Larry Finger larry.fin...@lwfinger.net writes: On 09/21/2012 12:14 PM, Marius Kotsbak wrote: On Sep 20, 2012 11:38 PM, Petric Frank pfr...@gmx.de mailto:pfr...@gmx.de wrote: In fact (here in Germany) german telecom delivered WLAN-routers which all have preset the same (E)SSID. Shall

Re: Multiple WLAN Routers with same SSID

2012-09-21 Thread Marius Kotsbak
On Sep 20, 2012 11:38 PM, Petric Frank pfr...@gmx.de wrote: In fact (here in Germany) german telecom delivered WLAN-routers which all have preset the same (E)SSID. Shall i go to every household (even if i can locate them) in my environment to tell them to change their SSID ? That is bad

Re: Multiple WLAN Routers with same SSID

2012-09-21 Thread Larry Finger
On 09/21/2012 12:14 PM, Marius Kotsbak wrote: On Sep 20, 2012 11:38 PM, Petric Frank pfr...@gmx.de mailto:pfr...@gmx.de wrote: In fact (here in Germany) german telecom delivered WLAN-routers which all have preset the same (E)SSID. Shall i go to every household (even if i can locate them

Re: Multiple WLAN Routers with same SSID

2012-09-21 Thread Dan Williams
On Thu, 2012-09-20 at 23:37 +0200, Petric Frank wrote: Hello Dan, Am Donnerstag, 20. September 2012, 19:19:52 schrieb Dan Williams: On Thu, 2012-09-20 at 18:13 +0200, Petric Frank wrote: at my location i sometimes notice that different WLAN-routers broadcasts the same SSID

Re: Multiple WLAN Routers with same SSID

2012-09-21 Thread Dan Williams
On Fri, 2012-09-21 at 12:42 -0500, Larry Finger wrote: On 09/21/2012 12:14 PM, Marius Kotsbak wrote: On Sep 20, 2012 11:38 PM, Petric Frank pfr...@gmx.de mailto:pfr...@gmx.de wrote: In fact (here in Germany) german telecom delivered WLAN-routers which all have preset the same

Multiple WLAN Routers with same SSID

2012-09-20 Thread Petric Frank
Hello, at my location i sometimes notice that different WLAN-routers broadcasts the same SSID, but different frequencies and MAC-addresses. They also require different (WPA1/2-) keys to access. But i have only the access key of one of this access points. The autoconnect feature of nm-applet

Re: Multiple WLAN Routers with same SSID

2012-09-20 Thread Dan Williams
On Thu, 2012-09-20 at 18:13 +0200, Petric Frank wrote: Hello, at my location i sometimes notice that different WLAN-routers broadcasts the same SSID, but different frequencies and MAC-addresses. They also require different (WPA1/2-) keys to access. But i have only the access key of one

Re: Multiple WLAN Routers with same SSID

2012-09-20 Thread Petric Frank
Hello Dan, Am Donnerstag, 20. September 2012, 19:19:52 schrieb Dan Williams: On Thu, 2012-09-20 at 18:13 +0200, Petric Frank wrote: at my location i sometimes notice that different WLAN-routers broadcasts the same SSID, but different frequencies and MAC-addresses. They also require

Re: WLAN

2012-05-31 Thread Larry Finger
On 05/31/2012 05:31 AM, Daniel Ackwonu wrote: Thank you for answering! The Output of lspci -nn is: daniel@linzuntu:~$ lspci -nn 00:00.0 Host bridge [0600]: Advanced Micro Devices [AMD] Device [1022:1705] 00:01.0 VGA compatible controller [0300]: ATI Technologies Inc Device [1002:9647] 00:01.1

Re: WLAN

2012-05-31 Thread José Queiroz
2012/5/29 Daniel Ackwonu daniel.ackw...@gmx.net Hello! My name is Daniel and I am using Ubuntu on a new HP notebook. I have got the problem that my Realtek Wlan card(RTL8111) is not recognized by my operating system. I have tried a few things but it is still not working. If one of you could

WLAN

2012-05-30 Thread Daniel Ackwonu
Hello! My name is Daniel and I am using Ubuntu on a new HP notebook. I have got the problem that my Realtek Wlan card(RTL8111) is not recognized by my operating system. I have tried a few things but it is still not working. If one of you could help that would be great. Thank you. iwconfig

Re: WLAN

2012-05-30 Thread Larry Finger
On 05/29/2012 04:18 AM, Daniel Ackwonu wrote: Hello! My name is Daniel and I am using Ubuntu on a new HP notebook. I have got the problem that my Realtek Wlan card(RTL8111) is not recognized by my operating system. I have tried a few things but it is still not working. If one of you could help

Re: networkmanager cant manage my wlan

2012-01-05 Thread Dan Williams
On Thu, 2011-12-22 at 15:14 +0800, czj wrote: hi everyone, I meet a error: when i use networkmanager to manage my wlan,it cant be enable wifi,But i can use wicd to connet wifi. The enviroment debug message as follows.I wonder if anyone can help me ? It appears that rfkill (ie, airplane

networkmanager cant manage my wlan

2012-01-02 Thread czj
hi everyone, I meet a error: when i use networkmanager to manage my wlan,it cant be enable wifi,But i can use wicd to connet wifi. The enviroment debug message as follows.I wonder if anyone can help me ? system os: computer:lenovo ideadpad v360 os:archlinux kernel:Linux cc-pc1 3.1.5-2-ck #1

Re: Problem with auto connect to WLAN

2011-09-30 Thread Christian Ehrlicher
Am Freitag, 30. September 2011, 07:40:39 schrieben Sie: On Wed, 2011-09-21 at 10:55 +0200, Christian Ehrlicher wrote: Hello, I've a system config to automatically connect to a wlan. This works fine for the first start of the network manager. Once the wlan isn't available (the wlan

Re: Problem with auto connect to WLAN

2011-09-29 Thread Dan Williams
On Wed, 2011-09-21 at 10:55 +0200, Christian Ehrlicher wrote: Hello, I've a system config to automatically connect to a wlan. This works fine for the first start of the network manager. Once the wlan isn't available (the wlan router is out of range/the wlan router is not active

Problem with auto connect to WLAN

2011-09-21 Thread Christian Ehrlicher
Hello, I've a system config to automatically connect to a wlan. This works fine for the first start of the network manager. Once the wlan isn't available (the wlan router is out of range/the wlan router is not active) the network manager won't connect anymore to this wlan. Neither

Display nm-secure-lock in appet if wlan is secure

2011-06-11 Thread Goldstein
Hi guys, I'm new to the list. Sorry if this kind of message is not appropriate. The thing is that I find it a bit annoying that nm applet does not show the nm-secure-lock icon on top of the nm-signal-XX icon when I'm connected to a secure wlan network. I connect to may different wlans on a daily

Re: Display nm-secure-lock in appet if wlan is secure

2011-06-11 Thread Pantelis Koukousoulas
connected to a secure wlan network. I connect to may different wlans on a daily basis. In some of them my packets are transmitted encrypted, in some others are transmitted in the clear, and it would be great to have a visual aid to remind me to which kind of wlan I'm connected to (so I don't

Re: Display nm-secure-lock in appet if wlan is secure

2011-06-11 Thread Goldstein
-lock icon on top of the nm-signal-XX icon when I'm connected to a secure wlan network. I connect to may different wlans on a daily basis. In some of them my packets are transmitted encrypted, in some others are transmitted in the clear, and it would be great to have a visual aid to remind me

Re: WLAN disabled by state file

2011-03-08 Thread Andrey Borzenkov
On Mon, Mar 7, 2011 at 8:02 PM, Ozan Çağlayan o...@pardus.org.tr wrote: On 07.03.2011 19:01, Dan Williams wrote: That message can only come from a user applet property set request from D-Bus. Actually this came to my mind right after posting the e-mail. It is the new KDE4 applet. Should I

Re: WLAN disabled by state file

2011-03-07 Thread Dan Williams
On Sun, 2011-03-06 at 18:03 +0200, Ozan Çağlayan wrote: On 05.03.2011 17:31, Dan Williams wrote: Need a bit more debug here; the --log-level=debug logs would be useful for starters. Dan Ok, the logs are attached. (This is the new NM 0.8.3.997) Is this also with nm-applet or some

Re: WLAN disabled by state file

2011-03-07 Thread Ozan Çağlayan
On 07.03.2011 19:01, Dan Williams wrote: That message can only come from a user applet property set request from D-Bus. Actually this came to my mind right after posting the e-mail. It is the new KDE4 applet. Should I blame it for this problem? Ozan Caglayan -- Pardus Linux

Re: WLAN disabled by state file

2011-03-07 Thread Dan Williams
On Mon, 2011-03-07 at 19:02 +0200, Ozan Çağlayan wrote: On 07.03.2011 19:01, Dan Williams wrote: That message can only come from a user applet property set request from D-Bus. Actually this came to my mind right after posting the e-mail. It is the new KDE4 applet. Should I blame it for

Re: WLAN disabled by state file

2011-03-06 Thread Ozan Çağlayan
On 05.03.2011 17:31, Dan Williams wrote: Need a bit more debug here; the --log-level=debug logs would be useful for starters. Dan Ok, the logs are attached. (This is the new NM 0.8.3.997) Thanks, -- Pardus Linux http://www.pardus.org.tr/eng After pressing the rfkill button on laptop:

Re: WLAN disabled by state file

2011-03-05 Thread Ozan Çağlayan
On 09.02.2011 19:50, Ozan Çağlayan wrote: I think there are multiple issues in here. The one that I've mentioned in the original thread and you've commented about may be triggered by the bug that I've replied. So with NM 0.8.2 on my Toshiba Portege R700 (iwlagn, exposing only a soft rfkill

Re: WLAN disabled by state file

2011-03-05 Thread Dan Williams
On Sat, 2011-03-05 at 15:07 +0200, Ozan Çağlayan wrote: On 09.02.2011 19:50, Ozan Çağlayan wrote: I think there are multiple issues in here. The one that I've mentioned in the original thread and you've commented about may be triggered by the bug that I've replied. So with NM 0.8.2

Re: WLAN disabled by state file

2011-02-09 Thread Dan Williams
On Thu, 2011-02-03 at 13:00 +0200, Ozan Çağlayan wrote: Hi, I have bug reports about some inconsistencies caused by the state file and rfkill interactions like when the user kills the radio and then re-enables it, the WLAN can't be enabled unless the state file is edited manually as root

Re: WLAN disabled by state file

2011-02-09 Thread Ozan Çağlayan
On 09.02.2011 18:40, Dan Williams wrote: In current NM 0.8.x git, if you uncheck Enable Wireless from the menu, NM writes that to the state file. That will then be in-force until you re-check Enable Wireless, even across reboots. This takes precedence over rfkill because it was an explicit

Re: WLAN disabled by state file

2011-02-07 Thread Ozan Çağlayan
On 03.02.2011 13:00, Ozan Çağlayan wrote: Hi, And there's also another bug that I can reproduce: 1. Connect using WiFi 2. Soft block WiFi (result: sw_enabled=0, hw_enabled=1) 3. state file is updated to WirelessEnabled=false 4. Unblock wifi (result: sw_enabled=1, hw_enabled=1) 5. state file

Re: WLAN disabled by state file

2011-02-07 Thread José Queiroz
2011/2/7 Ozan Çağlayan o...@pardus.org.tr On 03.02.2011 13:00, Ozan Çağlayan wrote: Hi, And there's also another bug that I can reproduce: 1. Connect using WiFi 2. Soft block WiFi (result: sw_enabled=0, hw_enabled=1) 3. state file is updated to WirelessEnabled=false 4. Unblock wifi

WLAN disabled by state file

2011-02-03 Thread Ozan Çağlayan
Hi, I have bug reports about some inconsistencies caused by the state file and rfkill interactions like when the user kills the radio and then re-enables it, the WLAN can't be enabled unless the state file is edited manually as root, etc. I think that when the system is booted, NM should

how to disable wlan and wwan at startup

2010-12-10 Thread pritam.ghang...@gmail.com
Hi I want only wired networking from NetworkManager. Can I disable wlan and wwan with some configuratoion option in nm-system-settings.conf. So that it doesn't even load the corresponding code/modules. runtime memory consumption is important to me. I tried looking for help on configuration

Re: how to disable wlan and wwan at startup

2010-12-10 Thread pritam.ghang...@gmail.com
On Fri, Dec 10, 2010 at 7:21 PM, pritam.ghang...@gmail.com pritam.ghang...@gmail.com wrote: Hi I want only wired networking from NetworkManager. Can I disable wlan and wwan with some configuratoion option in nm-system-settings.conf. So that it doesn't even load the corresponding code

How to disable WLAN permanently?

2009-11-13 Thread van Schelve
Hi Folks! Can someone tell me how to disable wlan in networkmanager permanently on a defined number of systems? We won't have wlan support for every system - only for a limited group of users. Blacklisting the specific kernel module will work for the internal wlan card. But what happens

Re: How to disable WLAN permanently?

2009-11-13 Thread John Mahoney
On Fri, Nov 13, 2009 at 12:11 PM, van Schelve pub...@van-schelve.de wrote: Hi Folks! Can someone tell me how to disable wlan in networkmanager permanently on a defined number of systems? Check this link for a command line hack that you can use at boot. http://www.mail-archive.com

Re: How to disable WLAN permanently?

2009-11-13 Thread Dan Williams
On Fri, 2009-11-13 at 18:11 +0100, van Schelve wrote: Hi Folks! Can someone tell me how to disable wlan in networkmanager permanently on a defined number of systems? We won't have wlan support for every system - only for a limited group of users. Blacklisting the specific kernel module

Re: Custom settings for wlan interfaces

2009-10-23 Thread Dan Williams
On Wed, 2009-10-21 at 16:02 +0200, Sven Nielsen wrote: Hi everybody, What is the preferred way / .conf file to set custom parameters for a wlan interface when it is brought up by NetworkManager? I want to set txrate, rts and frag to fixed values on a specific wlan interface when it comes

Custom settings for wlan interfaces

2009-10-21 Thread Sven Nielsen
Hi everybody, What is the preferred way / .conf file to set custom parameters for a wlan interface when it is brought up by NetworkManager? I want to set txrate, rts and frag to fixed values on a specific wlan interface when it comes up. cheers, Sven

Custom settings for wlan interfaces

2009-10-21 Thread Sven Nielsen
Hi everybody, What is the preferred way / .conf file to set custom parameters for a wlan interface when it is brought up by NetworkManager? I want to set txrate, rts and frag to fixed values on a specific wlan interface when it comes up. cheers, Sven -- Sven Nielsen Brookweg 30b 24568

Re: Keep a wlan active without Access Point?

2009-06-16 Thread Marc Herbert
Bastien Nocera a écrit : On Sun, 2009-06-14 at 12:03 +0530, Ravindra Wankar wrote: For one, I run apache with virtual host entries for the static IP. Secondly, it was just convenient. We develop web based apps and me and my colleagues need to access apache on each other's machines. Previously

Re: Keep a wlan active without Access Point?

2009-06-14 Thread John Mahoney
Yeah, I don't even want to know why you need to do this, but I have done more obscure stuff. Network Manager does not assign an IP address to the interface until it becomes active, even if you think you have an address assigned statically. You could write a script to assign the ip at boot with

Re: Keep a wlan active without Access Point?

2009-06-14 Thread Ravindra Wankar
For one, I run apache with virtual host entries for the static IP. Secondly, it was just convenient. We develop web based apps and me and my colleagues need to access apache on each other's machines. Previously I could simply copy-paste a url to someone else in an email or a chat window. Now

Re: Keep a wlan active without Access Point?

2009-06-14 Thread Bastien Nocera
On Sun, 2009-06-14 at 12:03 +0530, Ravindra Wankar wrote: For one, I run apache with virtual host entries for the static IP. Secondly, it was just convenient. We develop web based apps and me and my colleagues need to access apache on each other's machines. Previously I could simply

Keep a wlan active without Access Point?

2009-06-13 Thread Ravindra Wankar
I have a wireless connection with a static IP address 192.168.0.100. Everything works fine when I'm connected to an Access Point. Without the access point ping returns connect : Network is unreachable. Using 127.0.0.1 works, but I'd rather have the static IP accessible. The routing table is

Re: Keep a wlan active without Access Point?

2009-06-13 Thread John Mahoney
Your email does not make much sense. It may help if you explain what you are trying to accomplish. The 127.0.0.1 always returns pings because its the loopback device. If the wireless is not connected to an access point then I do not see why it would be in the routing tables. If you want a

Re: Keep a wlan active without Access Point?

2009-06-13 Thread Ravindra Wankar
Before I used Network Manager to manage my connections my wireless interface would be activated on boot. Without an access point I (obviously) could not connect to the net, but I could still ping my local machine with the static IP (192.168.0.100). With Network Manager managing my connection

Re: GNOME fails to recognize WLAN interface

2009-03-24 Thread PradeepGurumath
you please suggest how we can avoid restarting hald? thanks again, pradeep. PradeepGurumath wrote: Hi all, We are trying to interface our WLAN driver with GNOME on an OMAP board. Description of problem: The WLAN driver works without problem when we run it from the command line interface

Re: GNOME fails to recognize WLAN interface

2009-03-24 Thread Dan Williams
, pradeep. PradeepGurumath wrote: Hi all, We are trying to interface our WLAN driver with GNOME on an OMAP board. Description of problem: The WLAN driver works without problem when we run it from the command line interface. Even IFCONFIG command confirms that WLAN

Re: GNOME fails to recognize WLAN interface

2009-03-23 Thread Dan Williams
On Fri, 2009-03-20 at 08:11 -0700, PradeepGurumath wrote: Hi all, We are trying to interface our WLAN driver with GNOME on an OMAP board. Description of problem: The WLAN driver works without problem when we run it from the command line interface. Even IFCONFIG command confirms that WLAN

Re: GNOME-NetworkManager fails to recognise WLAN Interface

2009-03-20 Thread PradeepGurumath
...@gmail.com wrote: Hi all, We are integrating Wireless LAN driver with GNOME on a customer proprietary board. The issue we are facing is that our network interface (WLAN) does not appear in the GNOME-NetworkManager Applet. We need to identify, configure and connect to various network interfaces

GNOME fails to recognize WLAN interface

2009-03-20 Thread PradeepGurumath
Hi all, We are trying to interface our WLAN driver with GNOME on an OMAP board. Description of problem: The WLAN driver works without problem when we run it from the command line interface. Even IFCONFIG command confirms that WLAN interface is alive and kicking (WLAN gets listed along with eth0

Fw: Connection breaks frequently with Connection Sharing (3G to WLAN)

2009-02-11 Thread Juhani Jaakola
I tried connection sharing using a different WLAN adapter and with an additional laptop which uses the shared connection. I bought ZyXEL AG-220 WLAN adapter (ID 0586:3412) which uses zd1211rw driver. I plugged it in to the same PC which has the WL54H card - because it is a PCI card I did

Can I force the WLAN channel when I share my 3G connection over WLAN?

2009-02-04 Thread Juhani Jaakola
Hi all! I have a 3G connection to Internet. I want to share it over WLAN to other computers in my family. Can I somehow force the channel of the Ad Hoc WLAN network that NetworkManager creates? I'd like to avoid interference with the WLAN networks of my neighbors. A scan finds nearly ten

Re: Can I force the WLAN channel when I share my 3G connection over WLAN?

2009-02-04 Thread Dan Williams
On Thu, 2009-02-05 at 00:36 +0200, Juhani Jaakola wrote: Hi all! I have a 3G connection to Internet. I want to share it over WLAN to other computers in my family. Can I somehow force the channel of the Ad Hoc WLAN network that NetworkManager creates? I'd like to avoid interference

Re: Connection breaks frequently with Connection Sharing (3G to WLAN)

2009-01-20 Thread Juhani Jaakola
[julien.bresci...@free.fr] kirjoitti: Juhani Jaakola wrote: I have a PC with A-Link WL54H WLAN card (driver rt2500pci) and a USB 3G modem. I connect to the Internet via the 3G modem and I want to share that connection with other PCs via WLAN. I'm running Fedora 10. I connected to Internet with Auto GSM

GNOME-NetworkManager fails to recognise WLAN Interface

2009-01-08 Thread Pradeep Gurumath
Hi all, We are integrating Wireless LAN driver with GNOME on a customer proprietary board. The issue we are facing is that our network interface (WLAN) does not appear in the GNOME-NetworkManager Applet. We need to identify, configure and connect to various network interfaces available

Re: GNOME-NetworkManager fails to recognise WLAN Interface

2009-01-08 Thread Patryk Zawadzki
On Thu, Jan 8, 2009 at 10:46 AM, Pradeep Gurumath pradeepgurum...@gmail.com wrote: Hi all, We are integrating Wireless LAN driver with GNOME on a customer proprietary board. The issue we are facing is that our network interface (WLAN) does not appear in the GNOME-NetworkManager Applet. We

Re: GNOME-NetworkManager fails to recognise WLAN Interface

2009-01-08 Thread Tambet Ingo
On Thu, Jan 8, 2009 at 11:46, Pradeep Gurumath pradeepgurum...@gmail.com wrote: We are integrating Wireless LAN driver with GNOME on a customer proprietary board. The issue we are facing is that our network interface (WLAN) does not appear in the GNOME-NetworkManager Applet. We need

Re: Configure WLAN without applet?

2008-04-20 Thread Tassilo Horn
applet - knetworkmanager - pyNetworkManager I don't want to use the first two, cause I don't use Gnome nor KDE, so I've installed the last one and the applet sits in my XFCE tray. It lists my local WLAN, but the functionality to set a PSK for it seems to be broken. (Also the webpage

Configure WLAN without applet?

2008-04-18 Thread Tassilo Horn
- pyNetworkManager I don't want to use the first two, cause I don't use Gnome nor KDE, so I've installed the last one and the applet sits in my XFCE tray. It lists my local WLAN, but the functionality to set a PSK for it seems to be broken. (Also the webpage states that it is very buggy...) So is it possible

  1   2   >