Date: Tue, 20 Jul 1999 11:18:57 -0400 From: "Troy Settle" <st@i-plus.net> To: "Chris Malayter" <mustang@TeraHertz.Net>, <stable@FreeBSD.ORG> Subject: RE: Binding Virtual IP's Message-ID: <NDBBJIEPPJNIOAKGFIBDAEPFCAAA.st@i-plus.net> In-Reply-To: <Pine.BSF.4.05.9907171143190.3589-100000@saturn.terahertz.net>
next in thread | previous in thread | raw e-mail | index | archive | help
There is a mechinism already in place where can add lines to /etc/rc.conf, but that is a highly messy way to do it if you are binding many IPs. I use this script to do the deed: #!/bin/sh echo -n 'Binding Aliased IPs' i=1 j=255 while test ${i} -lt ${j} ; do /sbin/ifconfig fxp0 inet 209.100.27.${i} netmask 0xFFFFFFFF alias i=`/bin/expr ${i} + 1` echo -n . done echo " done" This script could be easily modified to bind multiple blocks of ip addresses. This does the job for me though (for at least another 100 vhosts :) -- Troy Settle iPlus Internet Services It's always a long day... 86400 doesn't fit into a short. > -----Original Message----- > From: owner-freebsd-stable@FreeBSD.ORG > [mailto:owner-freebsd-stable@FreeBSD.ORG]On Behalf Of Chris Malayter > Sent: Saturday, July 17, 1999 12:44 PM > To: stable@FreeBSD.ORG > Subject: Binding Virtual IP's > > > > What is the syntax to bind virtual IP's to my primary eth interface? > > Chris Malayter > > > Mustang@TeraHertz.Net > > ---------------------------------------------------------------- > --------- > Administrator, TeraHertz Communications | > | > | InterNIC CM3647 | > Chief Engineer - 95.1 WVUR - Valparaiso,Indiana | | > ---------------------------------------------------------------- > --------- > > "Behavior is hard to change...but charactor is nearly impossible" > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?NDBBJIEPPJNIOAKGFIBDAEPFCAAA.st>