Huawei E220 can't connect on Ubuntu 11.10

2011-12-12 Thread Bartosz
Hi. On Ubuntu 11.10 there is problem with connection via modem Huawei E220. On Ubuntu 11.10 the NetworkManager is in version 0.9.1.90-0ubuntu5.1 On Ubunto 11.04 there is version 0.8.4~git.20110319t175609.d14809b-0ubuntu3 The issue for Ubuntu was submitted:

Re: Huawei E220 can't connect on Ubuntu 11.10

2011-12-12 Thread Mathieu Trudel-Lapierre
On Fri, Dec 9, 2011 at 5:50 AM, Bartosz gan...@poczta.onet.pl wrote: Hi. On Ubuntu 11.10 there is problem with connection via modem Huawei E220. On Ubuntu 11.10 the NetworkManager is in version 0.9.1.90-0ubuntu5.1 On Ubunto 11.04 there is version 0.8.4~git.20110319t175609.d14809b-0ubuntu3

Re: [PATCH 0/4] VLAN support for NetworkManager(V5)

2011-12-12 Thread Chuck Anderson
On Sun, Dec 11, 2011 at 09:21:42PM -0500, Weiping Pan wrote: This patchset is to add vlan support for NetworkManager, PHYSDEV=eth9 3 support both static IP configuration and DHCP for vlan device Is IPv6 supported as well? Is there any reason the VLAN support needs to be aware of IP/IPv6

Re: Increased RAM usage with nm-applet 0.8.0 to 0.8.1

2011-12-12 Thread Uwe Geuder
On 12 December 2011 09:29, Jeff Hoogland jeffhoogl...@linux.com wrote: Attached are the two outputs you requested, digging through them now to see if I can pinpoint the issue. Did you find out anything? I converted the outputs to csv, loaded them into an OpenOffice spreadsheet, summed up

Re: Increased RAM usage with nm-applet 0.8.0 to 0.8.1

2011-12-12 Thread Jeff Hoogland
Yea I didn't notice anything either, but htop conky and the gnome system monitor all report increased ram usage with this updated. Another oddity is that the ttys on the systems that are upgraded also stop working. Guess I'll have to be sticking to the older network manager as it has far few

Re: Increased RAM usage with nm-applet 0.8.0 to 0.8.1

2011-12-12 Thread Dan Williams
On Mon, 2011-12-12 at 23:09 +0200, Uwe Geuder wrote: On 12 December 2011 09:29, Jeff Hoogland jeffhoogl...@linux.com wrote: Attached are the two outputs you requested, digging through them now to see if I can pinpoint the issue. Did you find out anything? I converted the outputs to

Can I use NM applets in VNC session?

2011-12-12 Thread Paul Smith
I have a system which is usually headless, where I use VNC to get into it. This system is running RHEL 6.2 (NetworkManager 0.8.1), and I configure VNC by creating a new virtual session using /etc/sysconfig/vncservers (not by exporting my normal desktop session... since I'm not logged into that

Re: Can I use NM applets in VNC session?

2011-12-12 Thread Dan Williams
On Mon, 2011-12-12 at 18:30 -0500, Paul Smith wrote: I have a system which is usually headless, where I use VNC to get into it. This system is running RHEL 6.2 (NetworkManager 0.8.1), and I configure VNC by creating a new virtual session using /etc/sysconfig/vncservers (not by exporting my

Re: bonding of non-ethernet devices

2011-12-12 Thread Dan Williams
On Fri, 2011-12-09 at 14:26 -0500, Dan Winship wrote: One of the bonding commits says: bonding: detect virtual bonding devices and create an ethernet device A bonding device is like a virtual ethernet device. We therefore reuse nm-device-ethernet and add some special handling to

Re: patches for openrc

2011-12-12 Thread Dan Williams
On Mon, 2011-12-12 at 14:25 +0800, Mu Qiao wrote: Hi, Dan The old baselayout-1 has been removed from Gentoo and openrc has been stabilized for months. Some configuration style has been changed since then. These patches add support for the new style. To be compatible, the code for the old

Re: [PATCH 0/4] VLAN support for NetworkManager(V5)

2011-12-12 Thread Weiping Pan
On 12/13/2011 04:02 AM, Chuck Anderson wrote: On Sun, Dec 11, 2011 at 09:21:42PM -0500, Weiping Pan wrote: This patchset is to add vlan support for NetworkManager, PHYSDEV=eth9 3 support both static IP configuration and DHCP for vlan device Is IPv6 supported as well? Is there any reason the

[PATCH 3/4] vlan: create NMDeviceEthernet for vlan device

2011-12-12 Thread Weiping Pan
A vlan device is like a virtual ethernet device. So we reuse NMDeviceEthernet insead of creating another NMDeviceVlan, and we add some special handling to detect vlan connections. And it makes little sense for NetworkManager to control vlan devices created not by itself, like devices created by

[PATCH 0/4] VLAN support for NetworkManager(V6)

2011-12-12 Thread Weiping Pan
This patchset is to add vlan support for NetworkManager, based on nm upstream, commit bed4d1533970(cli: use nm_utils_hwaddr_ntoa() from libnm-util). Requires libnl-3.2.1 FEATURE DESCRIPTION 1 example of vlan ifcfg file We try to make it compitable with the format used by initscripts, and there

[PATCH 4/4] vlan: add ifcfg-vlan writer

2011-12-12 Thread Weiping Pan
add write_vlan_setting() and modify test-ifcfg-rh.c to test it. Signed-off-by: Weiping Pan w...@redhat.com --- .../plugins/ifcfg-rh/tests/test-ifcfg-rh.c | 38 + src/settings/plugins/ifcfg-rh/writer.c | 84 2 files changed, 122 insertions(+),

[PATCH 2/4] vlan: create/delete kernel vlan device

2011-12-12 Thread Weiping Pan
We make use of libnl (=3.2.1) to create/delete kernel vlan device, and it can set vlan id, vlan flags and ingress/egress priority mapping. V3: 1 nm_netlink_iface_to_index() should use slave name V2: 1 use existing nm_netlink_iface_to_index() Signed-off-by: Weiping Pan w...@redhat.com ---

[PATCH 1/4] vlan: add ifcfg-vlan parser

2011-12-12 Thread Weiping Pan
The example of ifcfg-vlan is as followed: VLAN=yes TYPE=Vlan DEVICE=vlan43 or DEVICE=eth9.43 PHYSDEV=eth9 REORDER_HDR=0 VLAN_FLAGS=GVRP,LOOSE_BINDING VLAN_INGRESS_PRIORITY_MAP=0:1,2:5 VLAN_EGRESS_PRIORITY_MAP=12:3,14:7 ONBOOT=yes BOOTPROTO=static IPADDR=192.168.43.149 NETMASK=255.255.255.0 And

Re: [PATCH 0/3] ifupdown: Ip6 support and cleanups

2011-12-12 Thread Dan Williams
On Mon, 2011-12-12 at 08:33 +0100, Guido Günther wrote: Hi, attached patches add basic ip6 support to the ifupdown plugin and clean up some c'n'p errors in the ip4 testcase. Committed, thanks! Dan Cheers, -- Guido Guido Günther (3): ifupdown: cleanup indentation ifupdown: Add

error in conecting

2011-12-12 Thread kraxadmin
i try to connect to my vpn connection in NM; after i click on my vpn connection an window appears and ask for password and has two check box save just for this session and save in keyring. anyhow after i put my pass and enter the vpn connection which up to this point trys to connect suddenly

Re: [RFC] ADSL: Experimental PPPoE support

2011-12-12 Thread Pantelis Koukousoulas
On Fri, Dec 9, 2011 at 8:05 AM, Dan Williams d...@redhat.com wrote: On Tue, 2011-05-17 at 21:38 +0300, Pantelis Koukousoulas wrote: This is a first cut at experimental PPPoE support for ADSL devices. There are several shortcuts and the code is ugly, but it works so it can be used as a strawman