Re: [gentoo-user] /etc/conf.d/net syntax under new baselayout?

2011-05-10 Thread William Hubbs
Hi Walter, On Tue, May 10, 2011 at 08:19:10PM -0400, Walter Dnes wrote: > config_eth0= The quote on the line below this should be moved up, so it looks like: config_eth0=" 192.168.123.249/29 broadcast 192.168.123.255 mtu 1454 169.254.1.3/16 broadcast 169.254.255.255" routes_eth0= Same here: r

[gentoo-user] /etc/conf.d/net syntax under new baselayout?

2011-05-10 Thread Walter Dnes
I tried to follow the instructions for the baselayout upgrade... - good news - the system boots - bad news - networking is totally broken - really good news - I have a "hot backup" machine, which I'm sending this message from DMESG does show the Via-Rhine card coming up, and I do not use mo

[gentoo-user] /etc/conf.d/net tries to do too much

2010-02-15 Thread Grant
I configured my laptop as a wireless AP with hostapd. It works great as long as I 'ifconfig wlan0 192.168.1.1'. I can have /etc/init.d/net.wlan0 started automatically with hostapd, but I can't come up with an /etc/conf.d/net config that will work. It always fails by saying it can't set master mo

Re: [gentoo-user] etc/conf.d/net format ?

2009-02-23 Thread Stroller
On 23 Feb 2009, at 13:14, Helmut Jarausch wrote: ... So to fix this, I'd like to do some 'sleep' after /usr/bin/br2684ctl has executed. Where is the syntax br2684ctl_nas0= ... explained and how can I insert some 'sleep'? In my /etc/conf.d/net I have: preup() { if [[ ${IFACE} == "

Re: [gentoo-user] etc/conf.d/net format ?

2009-02-23 Thread Helmut Jarausch
On 23 Feb, Mike Kazantsev wrote: > On Mon, 23 Feb 2009 18:31:18 +0500 > Mike Kazantsev wrote: > >> On Mon, 23 Feb 2009 14:14:28 +0100 (CET) >> Helmut Jarausch wrote: >> >> > config_ppp0="ppp" # Runs /lib/rcscripts/net/pppd.sh >> > link_ppp0='nas0' # The name of the RFC2684 bridge interface >>

Re: [gentoo-user] etc/conf.d/net format ?

2009-02-23 Thread Mike Kazantsev
On Mon, 23 Feb 2009 18:31:18 +0500 Mike Kazantsev wrote: > On Mon, 23 Feb 2009 14:14:28 +0100 (CET) > Helmut Jarausch wrote: > > > config_ppp0="ppp" # Runs /lib/rcscripts/net/pppd.sh > > link_ppp0='nas0' # The name of the RFC2684 bridge interface > > I've never used "link_*" syntax to specify

Re: [gentoo-user] etc/conf.d/net format ?

2009-02-23 Thread Mike Kazantsev
On Mon, 23 Feb 2009 14:14:28 +0100 (CET) Helmut Jarausch wrote: > config_ppp0="ppp" # Runs /lib/rcscripts/net/pppd.sh > link_ppp0='nas0' # The name of the RFC2684 bridge interface I've never used "link_*" syntax to specify dependencies, prehaps it has been obsoleted and not working properly? T

[gentoo-user] etc/conf.d/net format ?

2009-02-23 Thread Helmut Jarausch
Hi, I have a timing problem setting up my ADSL network via bridge 2684 My script worked just fine until I moved my Gentoo system to my new fast multicore PC. Now it looks like the network configuration proceeds too fast. In /etc/conf.d/net I have br2684ctl_nas0="-e 0 -a 8.35" config_nas0=( null

Re: [gentoo-user] /etc/conf.d/net postup help

2008-06-17 Thread Neil Bothwick
On Mon, 16 Jun 2008 16:44:10 -0700, Grant wrote: > >> postup() { > >>set -xv > >>if [[ ${IFACE} == "ath0" ]] ; then > >>iwconfig ath0 rate 2M > >>fi > >>return 0 > >> } > > > > What is wrong, the syntax looks fine. Does running the iwconfig > > man

Re: [gentoo-user] /etc/conf.d/net postup help

2008-06-16 Thread Grant
>> I've tried a lot of stuff but I can't seem to get the postup syntax >> right: >> >> postup() { >>set -xv >>if [[ ${IFACE} == "ath0" ]] ; then >>iwconfig ath0 rate 2M >>fi >>return 0 >> } > > What is wrong, the syntax looks fine. Does running the iw

Re: [gentoo-user] /etc/conf.d/net postup help

2008-06-16 Thread Neil Bothwick
On Mon, 16 Jun 2008 12:02:33 -0700, Grant wrote: > I've tried a lot of stuff but I can't seem to get the postup syntax > right: > > postup() { >set -xv >if [[ ${IFACE} == "ath0" ]] ; then >iwconfig ath0 rate 2M >fi >return 0 > } What is wrong, the

Re: [gentoo-user] /etc/conf.d/net postup help

2008-06-16 Thread Iain Buchanan
On Mon, 2008-06-16 at 12:02 -0700, Grant wrote: > I've tried a lot of stuff but I can't seem to get the postup syntax right: > > postup() { >set -xv >if [[ ${IFACE} == "ath0" ]] ; then >iwconfig ath0 rate 2M >fi >return 0 > } > > Can anybody help wi

[gentoo-user] /etc/conf.d/net postup help

2008-06-16 Thread Grant
I've tried a lot of stuff but I can't seem to get the postup syntax right: postup() { set -xv if [[ ${IFACE} == "ath0" ]] ; then iwconfig ath0 rate 2M fi return 0 } Can anybody help with this? - Grant -- gentoo-user@lists.gentoo.org mailing list

Re: [gentoo-user] /etc/conf.d/net woes with baselayout2

2008-04-24 Thread Alan McKinnon
On Thursday 24 April 2008, Neil Bothwick wrote: > > [EMAIL PROTECTED] ~ $ egrep -v '^#|^$' /etc/conf.d/net > > iface_eth0="dhcp" > > iface_wlan0="dhcp" > > Those should be config_xxx="dhcp" > > > modules=( "iwconfig" ) > > And this should now be modules="iwconfig", although I inadvertently > left

Re: [gentoo-user] /etc/conf.d/net woes with baselayout2

2008-04-23 Thread Neil Bothwick
On Wed, 23 Apr 2008 23:38:30 +0200, Alan McKinnon wrote: > Does baselayout-2 use /etc/conf.d/net? It seems not from this: Yes, and with no changes needed here apart from the removal of Bash arrays. > [EMAIL PROTECTED] ~ $ sudo /etc/init.d/net.wlan0 restart > * Bringing up interface wlan0 > *

[gentoo-user] /etc/conf.d/net woes with baselayout2

2008-04-23 Thread Alan McKinnon
Hi all, Does baselayout-2 use /etc/conf.d/net? It seems not from this: [EMAIL PROTECTED] ~ $ sudo /etc/init.d/net.wlan0 restart * Bringing up interface wlan0 * Configuring wireless network for wlan0 * Scanning for access points * Found "tania" at 00:60:B3:30:8D:AB, managed, encrypted

Re: [gentoo-user] /etc/conf.d/net

2006-08-21 Thread Alan Mckinnon
On Sun, 2006-08-20 at 01:52 -0400, Philip Webb wrote: > 060819 David Corbin wrote: > > I emerged a bunch of stuff this morning, and got this: > > "Gentoo is moving toward common config file for all network interfaces. > > I looked at /etc/conf.d/net.example & it's woefully unclear > > how I port my

Re: [gentoo-user] /etc/conf.d/net

2006-08-19 Thread Philip Webb
060819 David Corbin wrote: > I emerged a bunch of stuff this morning, and got this: > "Gentoo is moving toward common config file for all network interfaces. > I looked at /etc/conf.d/net.example & it's woefully unclear > how I port my /etc/init.d/net.ppp0 to the new file/format. Yes, the dox are

Re: [gentoo-user] /etc/conf.d/net

2006-08-19 Thread David Corbin
On Saturday 19 August 2006 13:09, Pablo Antonio wrote: > Quick answer: http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=4 Well, I look there, and like the example file, there is nothing about ppp and where to put all the ppp options. The closest thing is the ADSL, but it's not really

Re: [gentoo-user] /etc/conf.d/net

2006-08-19 Thread Pablo Antonio
Quick answer: http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=4 -- Pablo A. http://www.pablo-a.com.ar/ -- gentoo-user@gentoo.org mailing list

[gentoo-user] /etc/conf.d/net

2006-08-19 Thread David Corbin
I emerged a bunch of stuff this morning, and got this: --begin-- * Gentoo is moving toward common configuration file for all network * interfaces. Thus starting from >=ppp-2.4.3-r10 the following files * are obsoleted and should be removed to avoid future confusion: * /etc/conf.d/net.ppp0