From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Wed, 29 Oct 2003 00:26:10 +1000 From: Dmitry Lebkov To: community@altlinux.ru Subject: Re: [Comm] eth0 =?KOI8-R?Q?=C9?= eth0:1 =?KOI8-R?Q?=D7_=D2=C1=DA?= =?KOI8-R?Q?=CE=D9=C8_=D3=C5=D4=D1=C8_=CB=C1=CB_=D3=C4=C5=CC=C1=D4=D8?= Message-Id: <20031029002610.441c614f.dima@sakhalin.ru> In-Reply-To: <3F9DC342.7020602@parkheights.dyndns.org> References: <3F9D9262.2080802@parkheights.dyndns.org> <3F9D9BA0.1060208@v-lug.vlink.ru> <3F9DC342.7020602@parkheights.dyndns.org> X-Mailer: Sylpheed version 0.9.6 (GTK+ 1.2.10; i586-alt-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit X-BeenThere: community@altlinux.ru X-Mailman-Version: 2.1.2 Precedence: list Reply-To: community@altlinux.ru List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Oct 2003 14:25:49 -0000 X-List-Received-Date: Tue, 28 Oct 2003 14:25:49 -0000 Archived-At: List-Archive: List-Post: On Mon, 27 Oct 2003 20:15:46 -0500 sergey ivanov wrote: > taras wrote: > > sergey ivanov пишет: > > > >> Всем привет. > >> > >> Нужно к имеющемуся на eth0 адресу 192.168.10.1 добавить алиас eth0:11 > >> с адресом 192.168.11.1 > >> Это очень легко делается вручную # ifconfig eth0:11 192.168.11.1 > >> Однако когда я создал в /etc/sysconfig/network-scripts файлик > >> ifcfg-eth0:11 следующего содержания > >> [skip] > > > > > > Оставьте только эти строки: > > DEVICE=eth0:11 > > IPADDR=192.168.11.1 > > NETMASK=255.255.255.0 > > NETWORK=192.168.11.0 > > BROADCAST=192.168.11.255 > > > > и все получится. > > Спасибо. А вы сами пробовали? У меня - не получается. С тем же ответом: > # ifconfig eth0:11 up > SIOCSIFFLAGS: Cannot assign requested address А что мешает заглянуть внутрь скрипта /etc/sysconfig/network-scripts/ifup-aliases? В начале скрипта всё подробно рсаписано: $ head -n 22 /etc/sysconfig/network-scripts/ifup-aliases #!/bin/sh # # configures aliases of device $1 # # This script goes out of its way to arrive at the configuration of ip # aliases described in the ifcfg-$DEV:* and ifcfg-$DEV-range* files from # whatever existing configuration it may be given: existing aliases not # specified in the configuration will be removed, netmasks and broadcast # addrs will be updated on existing aliases, and new aliases will be setup. # # range specification files: # # One can specify ranges of alised ipaddress using ifcfg-$DEV-range* files. # Specify multiple ranges using multiple files, such as ifcfg-eth0-range0 and # ifcfg-eth0-range1, etc. In these files, the following configuration variables # specify the range: # # IPADDR_START -- ipaddr to start range at. eg "192.168.30.1" # IPADDR_END -- ipaddr to end range at. eg "192.168.30.254" # CLONENUM_START -- interface clone number to start using for this range. eg "0" # -- WBR, Dmitry Lebkov