Re: Unexpected NetworkManager and dnsmasq interaction

2013-07-25 Thread Pavel Simerda
- Original Message - > From: "Eric Sokolowsky" > > I am using NetworkManager and dnsmasq together on a cluster that may or may > not have outside Internet connectivity. I use the "dns=dnsmasq" option in > NetworkManager to enable NetworkManager to run dnsmasq as a plugin to > provide DHCP

Re: QMI does not work in 3.10

2013-07-25 Thread Simone Ferlin-Oliveira
Dan, Problem solved. I get for each device a /dev/cdc-wdmX. I repeated the sequence of enabling the modem (AT^setport) and double checking the other steps I posted before, and it worked. On 25 July 2013 21:16, Dan Williams wrote: > On Thu, 2013-07-25 at 20:33 +0200, Simone Ferlin-Oliveira wrote

Re: IP6 client-id for DHCP6

2013-07-25 Thread Dan Williams
On Wed, 2013-07-24 at 17:15 -0400, Stuart Gathman wrote: > Network Manager in Fedora 19 has a Client ID field in the IP4 tab when > configuring a connection. For DHCP servers that support it, this allows > keeping the same lease when swapping hardware without changing the > hardware MAC. > > W

Re: QMI does not work in 3.10

2013-07-25 Thread Dan Williams
On Thu, 2013-07-25 at 20:33 +0200, Simone Ferlin-Oliveira wrote: > Hi, > I know fixed one of the problems and can see /deb/cdc_wdm0 although I have > more than one modem o the same type - huawei E353 - I see only one cdc_wdm. > How can one check whether the modem is QMI-enabled (at^SETPORT?) and/or

Re: vpnc fails when password is expiring

2013-07-25 Thread Dan Williams
On Wed, 2013-07-24 at 16:23 -0500, KodaK wrote: > I'm running the following in RHEL6: > > NetworkManager-glib-0.8.1-43.el6.x86_64 > NetworkManager-0.8.1-43.el6.x86_64 > NetworkManager-vpnc-0.8.0-1.git20100411.el6.x86_64 > NetworkManager-gnome-0.8.1-43.el6.x86_64 > > When I try to connect to our V

Re: QMI does not work in 3.10

2013-07-25 Thread Simone Ferlin-Oliveira
Hi, I know fixed one of the problems and can see /deb/cdc_wdm0 although I have more than one modem o the same type - huawei E353 - I see only one cdc_wdm. How can one check whether the modem is QMI-enabled (at^SETPORT?) and/or verify it? On Thursday, July 25, 2013, Simone Ferlin-Oliveira wrote: >

QMI does not work in 3.10

2013-07-25 Thread Simone Ferlin-Oliveira
Hi, I am using Huawei E353 and trying to enable QMI on these modems, although I can connect to the provider, nothing happens under /dev/... Is there something missing? My output: lsmod: Module Size Used by qmi_wwan7982 0 cdc_ncm13942 0 cdc_eth

[patch NetworkManager v3 6/6] nm-device-team: spawn teamd for team device connection

2013-07-25 Thread Jiri Pirko
Signed-off-by: Jiri Pirko --- src/devices/nm-device-team.c | 280 ++- 1 file changed, 279 insertions(+), 1 deletion(-) diff --git a/src/devices/nm-device-team.c b/src/devices/nm-device-team.c index 320b659..d920f9d 100644 --- a/src/devices/nm-device-team.c

[patch NetworkManager v3 0/6] add support for network team devices

2013-07-25 Thread Jiri Pirko
I heavily reused existing code, mainly bonding parts. The only thing not implemented yet is dbus communication with teamd (used particulary for port config setup). That I want to add once this patchset gets applied. v1->v2: - rebased on current NM git - removed "nm-setting-team.h" include from s

[patch NetworkManager v3 2/6] add setting for team port

2013-07-25 Thread Jiri Pirko
Signed-off-by: Jiri Pirko --- libnm-util/Makefile.am| 2 + libnm-util/libnm-util.ver | 5 ++ libnm-util/nm-connection.c| 17 libnm-util/nm-connection.h| 2 + libnm-util/nm-setting-team-port.c | 174 ++ libnm-util/

[patch NetworkManager v3 3/6] ifcfg: add read support for team devices

2013-07-25 Thread Jiri Pirko
Signed-off-by: Jiri Pirko --- src/settings/plugins/ifcfg-rh/reader.c | 163 + 1 file changed, 147 insertions(+), 16 deletions(-) diff --git a/src/settings/plugins/ifcfg-rh/reader.c b/src/settings/plugins/ifcfg-rh/reader.c index 650f711..6dde8e8 100644 --- a/src/s

[patch NetworkManager v3 4/6] ifcfg: add write support for team devices

2013-07-25 Thread Jiri Pirko
Signed-off-by: Jiri Pirko --- src/settings/plugins/ifcfg-rh/writer.c | 56 ++ 1 file changed, 56 insertions(+) diff --git a/src/settings/plugins/ifcfg-rh/writer.c b/src/settings/plugins/ifcfg-rh/writer.c index 810b526..6ed6921 100644 --- a/src/settings/plugins/if

[patch NetworkManager v3 5/6] cli: add team driver support

2013-07-25 Thread Jiri Pirko
Signed-off-by: Jiri Pirko --- cli/src/connections.c | 132 ++ 1 file changed, 113 insertions(+), 19 deletions(-) diff --git a/cli/src/connections.c b/cli/src/connections.c index 9c11b6d..4d6cb7e 100644 --- a/cli/src/connections.c +++ b/cli/src/conn