----- Original Message ----- From: "jonathan salahid" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Wednesday, August 23, 2006 2:07 PM
Subject: [plug] Re: PLUG Digest, Vol 17, Issue 67


access point of my wireless? pls do tell me how? im
using linksys wireless router G as my access point i
have 5 of them around the company. I want to make this
wireless router to behave like a switch then use linux
to control  ip release on each wireless client. but if
this can be done using this access point can you tell
me how??

wired lan clients <--> switch <--> [nic1] linux server [nic2] <--> AP <--> wireless clients

assuming nic1 ip address is 192.168.1.1 and nic2 ip address is 192.168.2.1

in your dhcpd.conf make two entries of the followings...

subnet 192.168.1.0 netmask 255.255.255.0 {
   option routers 192.168.1.1;
   option domain-name-servers <ip of your dns>;
   option domain-name "yourdomain.com";
   option subnet-mask 255.255.255.0;
   range <starting ip> <ending ip>;
   <and other entries that you like>;
}

subnet 192.168.2.0 netmask 255.255.255.0 {
   option routers 192.168.2.1;
   option domain-name-servers <ip of your dns>;
   option domain-name "yourdomain.com";
   option subnet-mask 255.255.255.0;
   range <starting ip> <ending ip>;
   <and other entries that you like>;
}

then make a firewall rules binding at nic2 to disallow network source address of 192.168.2.0/24 trying to access well known windows ports for file and printer sharing...

fooler.
_________________________________________________
Philippine Linux Users' Group (PLUG) Mailing List
[email protected] (#PLUG @ irc.free.net.ph)
Read the Guidelines: http://linux.org.ph/lists
Searchable Archives: http://archives.free.net.ph

Reply via email to