ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
* [sisyphus] I: /etc/net 0.7.0
@ 2005-03-22 10:03 Denis Ovsienko
  2005-03-22 10:29 ` Vladimir Cherednichenko
  2005-03-26  0:09 ` [sisyphus] " Arioch
  0 siblings, 2 replies; 6+ messages in thread
From: Denis Ovsienko @ 2005-03-22 10:03 UTC (permalink / raw)
  To: sisyphus


Привет.
Кто не читает ChangeLog, сообщаю:
1. Названия некоторых опций изменились.
2. Появилась поддержка множественных хостов. Это значит, что теоретически можно
составить один каталог /etc/net, который после распространения на несколько
хостов будет каждым хостом интерпретирован по-своему. Документации пока по этой
поддержке нет, поэтому желающие обкатать на своей сети могут обратиться прямо
ко мне лично.

-- 
    DO4-UANIC


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [sisyphus] I: /etc/net 0.7.0
  2005-03-22 10:03 [sisyphus] I: /etc/net 0.7.0 Denis Ovsienko
@ 2005-03-22 10:29 ` Vladimir Cherednichenko
  2005-03-22 10:43   ` Denis Ovsienko
  2005-03-26  0:09 ` [sisyphus] " Arioch
  1 sibling, 1 reply; 6+ messages in thread
From: Vladimir Cherednichenko @ 2005-03-22 10:29 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

В сообщении от Вторник 22 Март 2005 12:03 Denis Ovsienko написал(a):
> Привет.
> Кто не читает ChangeLog, сообщаю:
> 1. Названия некоторых опций изменились.
> 2. Появилась поддержка множественных хостов. Это значит, что теоретически
> можно составить один каталог /etc/net, который после распространения на
> несколько хостов будет каждым хостом интерпретирован по-своему.
> Документации пока по этой поддержке нет, поэтому желающие обкатать на своей
> сети могут обратиться прямо ко мне лично.

А в чём выражается: some incompatibility with previous releases ?

-- 
Best Regards, Vladimir Cherednichenko  
R.E.D Team | Admin
Ukraine | Kiev      mailto:che@red-team.org.ua

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [sisyphus] I: /etc/net 0.7.0
  2005-03-22 10:29 ` Vladimir Cherednichenko
@ 2005-03-22 10:43   ` Denis Ovsienko
  0 siblings, 0 replies; 6+ messages in thread
From: Denis Ovsienko @ 2005-03-22 10:43 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

> А в чём выражается: some incompatibility with previous releases ?
Так об этом в Changelog и написано, говорю же, что не читают его :)

-- 
    DO4-UANIC


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [sisyphus] Re: I: /etc/net 0.7.0
  2005-03-22 10:03 [sisyphus] I: /etc/net 0.7.0 Denis Ovsienko
  2005-03-22 10:29 ` Vladimir Cherednichenko
@ 2005-03-26  0:09 ` Arioch
  2005-03-26  8:28   ` Michael Shigorin
  1 sibling, 1 reply; 6+ messages in thread
From: Arioch @ 2005-03-26  0:09 UTC (permalink / raw)
  To: sisyphus

Denis Ovsienko пишет:

1. Опять при запуске почем-то не вызвался dhcpcd :-(

2. внутри ifdown выполняется проверка BOOTPROTO на "dhcp-static" и т.д.
А как насчет "dhcp,static" и т.д. ?

3. не хватает \n\r:
~~~~~~~~~~~~~
[root@localhost root]# ifup eth0
  'eth0' is already up [root@localhost root]#
[root@localhost root]#
~~~~~~~~~~~~~

4. видимо в настоящий момент dhcpcd выполняется отдельным потоком.
В результате служба arpwatch не запускается, типа не назначен ip-адресс.
Видимо она слишком рано запускается и пытается его получить?
Что делать не знаю - похоже простых решений нет.

5. Постараюсь поболтать с ifplugd team. Ибо назрело :-)
Вот забавный эксперимент:

service ifplugd stop
service network stop
 >>>> eth0 is down


service network stop
service ifplugd stop
 >>>> eth0 is UP

возможно, нужно, чтобы ifplugd зависело от network ?

кстати, кусочек ifplugd FAQ:
file://localhost/usr/share/RTFM/ifplugd-0.26/README.html

3: Q: When the cable is unplugged and the interface shut down it is 
still available with ifconfig and markes as UP. Why this?
A: ifplugd cannot detect the link beat with a shut down interface on 
certain (most as of kernel 2.4.19) network drivers. Thus ifplugd enables 
the interface before querying the link status. This may be switched off 
with -a flag. You might want to use it if you have a sane network driver 
(e.g. eepro100). The subdirectory patches/ in the ifplugd distribution 
includes a patch for the 8139too 0.9.26 driver, which makes the driver 
compatible with -a. Don't ask me how to apply this patch. If you don't 
know, you won't need it.







^ permalink raw reply	[flat|nested] 6+ messages in thread

* [sisyphus] Re: I: /etc/net 0.7.0
  2005-03-26  0:09 ` [sisyphus] " Arioch
@ 2005-03-26  8:28   ` Michael Shigorin
  2005-03-26 15:12     ` Arioch
  0 siblings, 1 reply; 6+ messages in thread
From: Michael Shigorin @ 2005-03-26  8:28 UTC (permalink / raw)
  To: sisyphus

On Sat, Mar 26, 2005 at 03:09:38AM +0300, Arioch wrote:
> 3. не хватает \n\r:
> ~~~~~~~~~~~~~
> [root@localhost root]# ifup eth0
>  'eth0' is already up [root@localhost root]#

Просто \n. :)

> The subdirectory patches/ in the ifplugd distribution includes
> a patch for the 8139too 0.9.26 driver, which makes the driver
> compatible with -a. Don't ask me how to apply this patch. If
> you don't know, you won't need it.

Ну, можете попробовать ещё эти закатать в kernel-fix-drivers-net.

-- 
 ---- WBR, Michael Shigorin <mike@altlinux.ru>
  ------ Linux.Kiev http://www.linux.kiev.ua/


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [sisyphus] Re: I: /etc/net 0.7.0
  2005-03-26  8:28   ` Michael Shigorin
@ 2005-03-26 15:12     ` Arioch
  0 siblings, 0 replies; 6+ messages in thread
From: Arioch @ 2005-03-26 15:12 UTC (permalink / raw)
  To: sisyphus

Michael Shigorin пишет:
>>3. не хватает \n\r:
> Просто \n. :)

Да, наверное, но я подумал: сами разберетесь.

> Ну, можете попробовать ещё эти закатать в kernel-fix-drivers-net.

Это как хотите, у меня b44.
Про него в ppp/supported_drivers сказано "works" - а полностью, с опцией 
"-a" или только без нее - молчат.



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-03-26 15:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-03-22 10:03 [sisyphus] I: /etc/net 0.7.0 Denis Ovsienko
2005-03-22 10:29 ` Vladimir Cherednichenko
2005-03-22 10:43   ` Denis Ovsienko
2005-03-26  0:09 ` [sisyphus] " Arioch
2005-03-26  8:28   ` Michael Shigorin
2005-03-26 15:12     ` Arioch

ALT Linux Sisyphus discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
		sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
	public-inbox-index sisyphus

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sisyphus


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git