<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Buzztiger</id>
	<title>LinuxMCE - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Buzztiger"/>
	<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php/Special:Contributions/Buzztiger"/>
	<updated>2026-05-11T05:39:58Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21613</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21613"/>
		<updated>2009-11-18T11:41:48Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: /* /etc/network/interfaces */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Tutorials]]&lt;br /&gt;
WORK IN PROGRESS&lt;br /&gt;
&lt;br /&gt;
== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices to connect to the core, the internal network and the internet.&lt;br /&gt;
&lt;br /&gt;
== Hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
If you install LMCE from scratch make sure that your wifi card is NOT inserted prior to installation so that LMCE doesn&#039;t use it as the internal network interface. After LCME installation has finished, insert the wifi card.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.1.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
=== /etc/network/interfaces ===&lt;br /&gt;
&lt;br /&gt;
We&#039;ll make a copy of /etc/network/interfaces in case something goes wrong before we edit it.&lt;br /&gt;
&lt;br /&gt;
 mv /etc/network/interfaces /etc/network/interfaces.bck&lt;br /&gt;
&lt;br /&gt;
 joe /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
 auto lo eth0 eth1 br0&lt;br /&gt;
automatically initialise eth0 (external interface) eth1 (internal LAN) and br0 (our bridge interface). Keep ath0 out of this for now, we&#039;ll initialise it separately.&lt;br /&gt;
&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
&lt;br /&gt;
 # Internet Interface&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
        address 192.168.1.2&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        gateway 192.168.1.1&lt;br /&gt;
        dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Fill in your own settings here, in my case 192.168.1.1 is the ADSL modem. Alternatively you can use dhcp to get the adress details from your ADSL modem.&lt;br /&gt;
&lt;br /&gt;
 # LAN interface&lt;br /&gt;
 iface eth1 inet manual&lt;br /&gt;
   up /sbin/ifconfig eth0 up&lt;br /&gt;
   down /sbin/ifconfig eth0 down&lt;br /&gt;
&lt;br /&gt;
The internal interface, note that it doesn&#039;t get an adress assigned.&lt;br /&gt;
&lt;br /&gt;
 # Wireless interface&lt;br /&gt;
 auto ath0&lt;br /&gt;
 iface ath0 inet manual&lt;br /&gt;
   up /sbin/ifconfig ath0 up&lt;br /&gt;
&lt;br /&gt;
The wireless interface, again no adress details here.&lt;br /&gt;
&lt;br /&gt;
 iface br0 inet static&lt;br /&gt;
    address 192.168.80.1&lt;br /&gt;
    network 192.168.80.0&lt;br /&gt;
    netmask 255.255.255.0&lt;br /&gt;
    broadcast 192.168.80.255&lt;br /&gt;
    pre-up /usr/sbin/brctl addbr br0&lt;br /&gt;
    pre-up /usr/sbin/brctl addif br0 eth1&lt;br /&gt;
&lt;br /&gt;
The fun part. Finally we assign the adress for the internal LAN to the bridge interace br0 (I&#039;m sticking here with the standard LMCE network 80.0). The pre-up will create a bridge and add the eth1  interface to it. &lt;br /&gt;
&lt;br /&gt;
    pre-up /sbin/wlanconfig ath0 destroy&lt;br /&gt;
    pre-up /sbin/wlanconfig ath0 create wlandev wifi0 wlanmode ap&lt;br /&gt;
    pre-up /sbin/iwconfig ath0 channel 3&lt;br /&gt;
&lt;br /&gt;
This part is necessary as the atheros interface has some issues to switch ino access point mode (master mode)&lt;br /&gt;
&lt;br /&gt;
    pre-up /usr/sbin/brctl addif br0 ath0&lt;br /&gt;
&lt;br /&gt;
After firing up the wireless interface we add it to the bridge as well.&lt;br /&gt;
&lt;br /&gt;
    post-down /usr/sbin/brctl delif br0 eth1&lt;br /&gt;
    post-down /usr/sbin/brctl delif br0 ath0&lt;br /&gt;
    post-down /usr/sbin/brctl delbr br0&lt;br /&gt;
&lt;br /&gt;
Just some lines to define how to cleanly shut down the bridge: remove both interfaces and then remove the bridge interace itself&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We need to set the bridge (which contains eth1 and ath0) as the new interface for the dhcpd server. &lt;br /&gt;
Edit /etc/default/dhcp.conf as followed:&lt;br /&gt;
&lt;br /&gt;
    INTERFACES=&amp;quot;br0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
=== wireless configuration ===&lt;br /&gt;
&lt;br /&gt;
We&#039;ll use hostapd to manage the wireless part as it provides WPA encryption. I suggest that you first try to setup your network without encryption, make sure it works and then enable encryption.&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;br /&gt;
&lt;br /&gt;
It is possible to set static ip adresses manually instead of using LMCE&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Wake_on_LAN&amp;diff=21562</id>
		<title>Wake on LAN</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Wake_on_LAN&amp;diff=21562"/>
		<updated>2009-11-02T07:44:03Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: Added -i option for use of eth1 interface&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;From the command line type;&lt;br /&gt;
&lt;br /&gt;
    etherwake &amp;lt;mac-address of device&amp;gt; or even moonID (for MD/PC&#039;s)&lt;br /&gt;
&lt;br /&gt;
try;&lt;br /&gt;
&lt;br /&gt;
   man etherwake&lt;br /&gt;
&lt;br /&gt;
for more info. This will send a &#039;magic packet&#039; to the device targeted and as long as that device has the bios &amp;amp; Network interface options to do WOL then your in business. Obviously you could build some scripts to make this work more slickly and also trigger those scripts based on other events or even time of day etc etc.&lt;br /&gt;
&lt;br /&gt;
Remember that etherwake will use eth0 by default which might not be your internal network. To use for example eth1 type&lt;br /&gt;
&lt;br /&gt;
    etherwake -i eth1 &amp;lt;mac-address of device&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Taken from the forum [http://forum.linuxmce.org/index.php?topic=2726.msg13361#msg13361].&lt;br /&gt;
&lt;br /&gt;
[[Category: Tutorials]]&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21317</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21317"/>
		<updated>2009-10-03T10:58:46Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: WORK IN PROGRESS&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WORK IN PROGRESS&lt;br /&gt;
&lt;br /&gt;
== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices to connect to the core, the internal network and the internet.&lt;br /&gt;
&lt;br /&gt;
== Hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
If you install LMCE from scratch make sure that your wifi card is NOT inserted prior to installation so that LMCE doesn&#039;t use it as the internal network interface. After LCME installation has finished, insert the wifi card.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.1.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
=== /etc/network/interfaces ===&lt;br /&gt;
&lt;br /&gt;
We&#039;ll make a copy of /etc/network/interfaces in case something goes wrong before we edit it.&lt;br /&gt;
&lt;br /&gt;
 mv /etc/network/interfaces /etc/network/interfaces.bck&lt;br /&gt;
&lt;br /&gt;
 joe /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
 auto lo eth0 eth1 br0&lt;br /&gt;
automatically initialise eth0 (external interface) eth1 (internal LAN) and br0 (our bridge interface). Keep ath0 out of this for now, we&#039;ll initialise it separately.&lt;br /&gt;
&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
&lt;br /&gt;
 # Internet Interface&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
        address 192.168.1.2&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        gateway 192.168.1.1&lt;br /&gt;
        dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Fill in your own settings here, in my case 192.168.1.1 is the ADSL modem. Alternatively you can use dhcp to get the adress details from your ADSL modem.&lt;br /&gt;
&lt;br /&gt;
 # LAN interface&lt;br /&gt;
 iface eth1 inet manual&lt;br /&gt;
   up /sbin/ifconfig eth0 up&lt;br /&gt;
   down /sbin/ifconfig eth0 down&lt;br /&gt;
&lt;br /&gt;
The internal interface, note that it doesn&#039;t get an adress assigned.&lt;br /&gt;
&lt;br /&gt;
 # Wireless interface&lt;br /&gt;
 auto ath0&lt;br /&gt;
 iface ath0 inet manual&lt;br /&gt;
   up /sbin/ifconfig ath0 up&lt;br /&gt;
&lt;br /&gt;
The wireless interface, again no adress details here.&lt;br /&gt;
&lt;br /&gt;
 iface br0 inet static&lt;br /&gt;
    address 192.168.80.1&lt;br /&gt;
    network 192.168.80.0&lt;br /&gt;
    netmask 255.255.255.0&lt;br /&gt;
    broadcast 192.168.80.255&lt;br /&gt;
    pre-up /usr/sbin/brctl addbr br0&lt;br /&gt;
    pre-up /usr/sbin/brctl addif br0 eth1&lt;br /&gt;
&lt;br /&gt;
The fun part. Finally we assign the adress for the internal LAN to the bridge interace br0 (I&#039;m sticking here with the standard LMCE network 80.0). The pre-up will create a bridge and add the eth1  interface to it. &lt;br /&gt;
&lt;br /&gt;
    pre-up /sbin/wlanconfig ath0 destroy&lt;br /&gt;
    pre-up /sbin/wlanconfig ath0 create wlandev wifi0 wlanmode ap&lt;br /&gt;
    pre-up /sbin/iwconfig ath0 channel 3&lt;br /&gt;
&lt;br /&gt;
This part is necessary as the atheros interface has some issues to switch ino access point mode (master mode)&lt;br /&gt;
&lt;br /&gt;
    pre-up /usr/sbin/brctl addif br0 ath0&lt;br /&gt;
&lt;br /&gt;
After firing up the wireless interface we add it to the bridge as well.&lt;br /&gt;
&lt;br /&gt;
    post-down /usr/sbin/brctl delif br0 eth1&lt;br /&gt;
    post-down /usr/sbin/brctl delif br0 ath0&lt;br /&gt;
    post-down /usr/sbin/brctl delbr br0&lt;br /&gt;
&lt;br /&gt;
Just some lines to define how to cleanly shut down the bridge: remove both interfaces and then remove the bridge interace itself&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
=== wireless configuration ===&lt;br /&gt;
&lt;br /&gt;
We&#039;ll use hostapd to manage the wireless part as it provides WPA encryption. I suggest that you first try to setup your network without encryption, make sure it works and then enable encryption.&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;br /&gt;
&lt;br /&gt;
It is possible to set static ip adresses manually instead of using LMCE&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21316</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21316"/>
		<updated>2009-10-03T10:53:32Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices to connect to the core, the internal network and the internet.&lt;br /&gt;
&lt;br /&gt;
== Hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
If you install LMCE from scratch make sure that your wifi card is NOT inserted prior to installation so that LMCE doesn&#039;t use it as the internal network interface. After LCME installation has finished, insert the wifi card.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.1.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
=== /etc/network/interfaces ===&lt;br /&gt;
&lt;br /&gt;
We&#039;ll make a copy of /etc/network/interfaces in case something goes wrong before we edit it.&lt;br /&gt;
&lt;br /&gt;
 mv /etc/network/interfaces /etc/network/interfaces.bck&lt;br /&gt;
&lt;br /&gt;
 joe /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
 auto lo eth0 eth1 br0&lt;br /&gt;
automatically initialise eth0 (external interface) eth1 (internal LAN) and br0 (our bridge interface). Keep ath0 out of this for now, we&#039;ll initialise it separately.&lt;br /&gt;
&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
&lt;br /&gt;
 # Internet Interface&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
        address 192.168.1.2&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        gateway 192.168.1.1&lt;br /&gt;
        dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Fill in your own settings here, in my case 192.168.1.1 is the ADSL modem. Alternatively you can use dhcp to get the adress details from your ADSL modem.&lt;br /&gt;
&lt;br /&gt;
 # LAN interface&lt;br /&gt;
 iface eth1 inet manual&lt;br /&gt;
   up /sbin/ifconfig eth0 up&lt;br /&gt;
   down /sbin/ifconfig eth0 down&lt;br /&gt;
&lt;br /&gt;
The internal interface, note that it doesn&#039;t get an adress assigned.&lt;br /&gt;
&lt;br /&gt;
 # Wireless interface&lt;br /&gt;
 auto ath0&lt;br /&gt;
 iface ath0 inet manual&lt;br /&gt;
   up /sbin/ifconfig ath0 up&lt;br /&gt;
&lt;br /&gt;
The wireless interface, again no adress details here.&lt;br /&gt;
&lt;br /&gt;
 iface br0 inet static&lt;br /&gt;
    address 192.168.80.1&lt;br /&gt;
    network 192.168.80.0&lt;br /&gt;
    netmask 255.255.255.0&lt;br /&gt;
    broadcast 192.168.80.255&lt;br /&gt;
    pre-up /usr/sbin/brctl addbr br0&lt;br /&gt;
    pre-up /usr/sbin/brctl addif br0 eth1&lt;br /&gt;
&lt;br /&gt;
The fun part. Finally we assign the adress for the internal LAN to the bridge interace br0 (I&#039;m sticking here with the standard LMCE network 80.0). The pre-up will create a bridge and add the eth1  interface to it. &lt;br /&gt;
&lt;br /&gt;
    pre-up /sbin/wlanconfig ath0 destroy&lt;br /&gt;
    pre-up /sbin/wlanconfig ath0 create wlandev wifi0 wlanmode ap&lt;br /&gt;
    pre-up /sbin/iwconfig ath0 channel 3&lt;br /&gt;
&lt;br /&gt;
This part is necessary as the atheros interface has some issues to switch ino access point mode (master mode)&lt;br /&gt;
&lt;br /&gt;
    pre-up /usr/sbin/brctl addif br0 ath0&lt;br /&gt;
&lt;br /&gt;
After firing up the wireless interface we add it to the bridge as well.&lt;br /&gt;
&lt;br /&gt;
    post-down /usr/sbin/brctl delif br0 eth1&lt;br /&gt;
    post-down /usr/sbin/brctl delif br0 ath0&lt;br /&gt;
    post-down /usr/sbin/brctl delbr br0&lt;br /&gt;
&lt;br /&gt;
Just some lines to define how to cleanly shut down the bridge: remove both interfaces and then remove the bridge interace itself&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
=== wireless configuration ===&lt;br /&gt;
&lt;br /&gt;
We&#039;ll use hostapd to manage the wireless part as it provides WPA encryption. I suggest that you first try to setup your network without encryption, make sure it works and then enable encryption.&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;br /&gt;
&lt;br /&gt;
It is possible to set static ip adresses manually instead of using LMCE&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Talk:Access_Point&amp;diff=21315</id>
		<title>Talk:Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Talk:Access_Point&amp;diff=21315"/>
		<updated>2009-10-03T10:53:08Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: New page: Buzztiger: My first LMCE wiki entry. I&amp;#039;m not sure if this hack brakes any core functionality, but so far my installation (latest alpha2) works as before and even asks me if I want to add n...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Buzztiger: My first LMCE wiki entry. I&#039;m not sure if this hack brakes any core functionality, but so far my installation (latest alpha2) works as before and even asks me if I want to add new devices from the wireless network.  RFC...&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21314</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21314"/>
		<updated>2009-10-03T10:50:39Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: /* /etc/network/interfaces */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices to connect to the core, the internal network and the internet.&lt;br /&gt;
&lt;br /&gt;
== Hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
If you install LMCE from scratch make sure that your wifi card is NOT inserted prior to installation so that LMCE doesn&#039;t use it as the internal network interface. After LCME installation has finished, insert the wifi card.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.5.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
=== /etc/network/interfaces ===&lt;br /&gt;
&lt;br /&gt;
We&#039;ll make a copy of /etc/network/interfaces in case something goes wrong before we edit it.&lt;br /&gt;
&lt;br /&gt;
 mv /etc/network/interfaces /etc/network/interfaces.bck&lt;br /&gt;
&lt;br /&gt;
 joe /etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
 auto lo eth0 eth1 br0&lt;br /&gt;
automatically initialise eth0 (external interface) eth1 (internal LAN) and br0 (our bridge interface). Keep ath0 out of this for now, we&#039;ll initialise it separately.&lt;br /&gt;
&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
&lt;br /&gt;
 # Internet Interface&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
        address 192.168.1.2&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        gateway 192.168.1.1&lt;br /&gt;
        dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Fill in your own settings here, in my case 192.168.1.1 is the ADSL modem. Alternatively you can use dhcp to get the adress details from your ADSL modem.&lt;br /&gt;
&lt;br /&gt;
 # LAN interface&lt;br /&gt;
 iface eth1 inet manual&lt;br /&gt;
   up /sbin/ifconfig eth0 up&lt;br /&gt;
   down /sbin/ifconfig eth0 down&lt;br /&gt;
&lt;br /&gt;
The internal interface, note that it doesn&#039;t get an adress assigned.&lt;br /&gt;
&lt;br /&gt;
 # Wireless interface&lt;br /&gt;
 auto ath0&lt;br /&gt;
 iface ath0 inet manual&lt;br /&gt;
   up /sbin/ifconfig ath0 up&lt;br /&gt;
&lt;br /&gt;
The wireless interface, again no adress details here.&lt;br /&gt;
&lt;br /&gt;
 iface br0 inet static&lt;br /&gt;
    address 192.168.80.1&lt;br /&gt;
    network 192.168.80.0&lt;br /&gt;
    netmask 255.255.255.0&lt;br /&gt;
    broadcast 192.168.80.255&lt;br /&gt;
    pre-up /usr/sbin/brctl addbr br0&lt;br /&gt;
    pre-up /usr/sbin/brctl addif br0 eth1&lt;br /&gt;
&lt;br /&gt;
The fun part. Finally we assign the adress for the internal LAN to the bridge interace br0 (I&#039;m sticking here with the standard LMCE network 80.0). The pre-up will create a bridge and add the eth1  interface to it. &lt;br /&gt;
&lt;br /&gt;
    pre-up /sbin/wlanconfig ath0 destroy&lt;br /&gt;
    pre-up /sbin/wlanconfig ath0 create wlandev wifi0 wlanmode ap&lt;br /&gt;
    pre-up /sbin/iwconfig ath0 channel 3&lt;br /&gt;
&lt;br /&gt;
This part is necessary as the atheros interface has some issues to switch ino access point mode (master mode)&lt;br /&gt;
&lt;br /&gt;
    pre-up /usr/sbin/brctl addif br0 ath0&lt;br /&gt;
&lt;br /&gt;
After firing up the wireless interface we add it to the bridge as well.&lt;br /&gt;
&lt;br /&gt;
    post-down /usr/sbin/brctl delif br0 eth1&lt;br /&gt;
    post-down /usr/sbin/brctl delif br0 ath0&lt;br /&gt;
    post-down /usr/sbin/brctl delbr br0&lt;br /&gt;
&lt;br /&gt;
Just some lines to define how to cleanly shut down the bridge: remove both interfaces and then remove the bridge interace itself&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
=== wireless configuration ===&lt;br /&gt;
&lt;br /&gt;
We&#039;ll use hostapd to manage the wireless part as it provides WPA encryption. I suggest that you first try to setup your network without encryption, make sure it works and then enable encryption.&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;br /&gt;
&lt;br /&gt;
It is possible to set static ip adresses manually instead of using LMCE&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21313</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21313"/>
		<updated>2009-10-03T10:47:31Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: /* /etc/network/interfaces */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices to connect to the core, the internal network and the internet.&lt;br /&gt;
&lt;br /&gt;
== Hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
If you install LMCE from scratch make sure that your wifi card is NOT inserted prior to installation so that LMCE doesn&#039;t use it as the internal network interface. After LCME installation has finished, insert the wifi card.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.5.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
=== /etc/network/interfaces ===&lt;br /&gt;
&lt;br /&gt;
 auto lo eth0 eth1 br0&lt;br /&gt;
automatically initialise eth0 (external interface) eth1 (internal LAN) and br0 (our bridge interface). Keep ath0 out of this for now, we&#039;ll initialise it separately.&lt;br /&gt;
&lt;br /&gt;
 iface lo inet loopback&lt;br /&gt;
&lt;br /&gt;
 # Internet Interface&lt;br /&gt;
 iface eth0 inet static&lt;br /&gt;
        address 192.168.1.2&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        gateway 192.168.1.1&lt;br /&gt;
        dns-nameservers 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
Fill in your own settings here, in my case 192.168.1.1 is the ADSL modem. Alternatively you can use dhcp to get the adress details from your ADSL modem.&lt;br /&gt;
&lt;br /&gt;
 # LAN interface&lt;br /&gt;
 iface eth1 inet manual&lt;br /&gt;
   up /sbin/ifconfig eth0 up&lt;br /&gt;
   down /sbin/ifconfig eth0 down&lt;br /&gt;
&lt;br /&gt;
The internal interface, note that it doesn&#039;t get an adress assigned.&lt;br /&gt;
&lt;br /&gt;
 # Wireless interface&lt;br /&gt;
 auto ath0&lt;br /&gt;
 iface ath0 inet manual&lt;br /&gt;
   up /sbin/ifconfig ath0 up&lt;br /&gt;
&lt;br /&gt;
The wireless interface, again no adress details here.&lt;br /&gt;
&lt;br /&gt;
 iface br0 inet static&lt;br /&gt;
    address 192.168.80.1&lt;br /&gt;
    network 192.168.80.0&lt;br /&gt;
    netmask 255.255.255.0&lt;br /&gt;
    broadcast 192.168.80.255&lt;br /&gt;
    pre-up /usr/sbin/brctl addbr br0&lt;br /&gt;
    pre-up /usr/sbin/brctl addif br0 eth1&lt;br /&gt;
&lt;br /&gt;
The fun part. Finally we assign the adress for the internal LAN to the bridge interace br0 (I&#039;m sticking here with the standard LMCE network 80.0). The pre-up will create a bridge and add the eth1  interface to it. &lt;br /&gt;
&lt;br /&gt;
    pre-up /sbin/wlanconfig ath0 destroy&lt;br /&gt;
    pre-up /sbin/wlanconfig ath0 create wlandev wifi0 wlanmode ap&lt;br /&gt;
    pre-up /sbin/iwconfig ath0 channel 3&lt;br /&gt;
&lt;br /&gt;
This part is necessary as the atheros interface has some issues to switch ino access point mode (master mode)&lt;br /&gt;
&lt;br /&gt;
    pre-up /usr/sbin/brctl addif br0 ath0&lt;br /&gt;
&lt;br /&gt;
After firing up the wireless interface we add it to the bridge as well.&lt;br /&gt;
&lt;br /&gt;
    post-down /usr/sbin/brctl delif br0 eth1&lt;br /&gt;
    post-down /usr/sbin/brctl delif br0 ath0&lt;br /&gt;
    post-down /usr/sbin/brctl delbr br0&lt;br /&gt;
&lt;br /&gt;
Just some lines off to shut down the bridge.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
=== wireless configuration ===&lt;br /&gt;
&lt;br /&gt;
We&#039;ll use hostapd to manage the wireless part as it provides WPA encryption. I suggest that you first try to setup your network without encryption, make sure it works and then enable encryption.&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;br /&gt;
&lt;br /&gt;
It is possible to set static ip adresses manually instead of using LMCE&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21303</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21303"/>
		<updated>2009-09-29T03:49:33Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: /* Config files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices to connect to the core, the internal network and the internet.&lt;br /&gt;
&lt;br /&gt;
== Hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
If you install LMCE from scratch make sure that your wifi card is NOT inserted prior to installation so that LMCE doesn&#039;t use it as the internal network interface. After LCME installation has finished, insert the wifi card.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.5.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
=== /etc/network/interfaces ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
=== wireless configuration ===&lt;br /&gt;
&lt;br /&gt;
We&#039;ll use hostapd to manage the wireless part as it provides WPA encryption. I suggest that you first try to setup your network without encryption, make sure it works and then enable encryption.&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;br /&gt;
&lt;br /&gt;
It is possible to set static ip adresses manually instead of using LMCE&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21302</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21302"/>
		<updated>2009-09-29T03:46:48Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices to connect to the core, the internal network and the internet.&lt;br /&gt;
&lt;br /&gt;
== Hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
If you install LMCE from scratch make sure that your wifi card is NOT inserted prior to installation so that LMCE doesn&#039;t use it as the internal network interface. After LCME installation has finished, insert the wifi card.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.5.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
/etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;br /&gt;
&lt;br /&gt;
It is possible to set static ip adresses manually instead of using LMCE&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21301</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21301"/>
		<updated>2009-09-29T03:45:42Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: /* Set static IP adresses */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices to connect to the core the internal network and the internet.&lt;br /&gt;
&lt;br /&gt;
== Hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
If you install LMCE from scratch make sure that your wifi card is NOT inserted prior to installation so that LMCE doesn&#039;t use it as the internal network interface. After LCME installation has finished, insert the wifi card.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.5.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
/etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;br /&gt;
&lt;br /&gt;
It is possible to set static ip adresses manually instead of using LMCE&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21300</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21300"/>
		<updated>2009-09-29T03:21:01Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: /* Hardware setup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices to connect to the core the internal network and the internet.&lt;br /&gt;
&lt;br /&gt;
== Hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
If you install LMCE from scratch make sure that your wifi card is NOT inserted prior to installation so that LMCE doesn&#039;t use it as the internal network interface. After LCME installation has finished, insert the wifi card.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.5.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
/etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21299</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21299"/>
		<updated>2009-09-29T03:16:13Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: /* My hardware setup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices to connect to the core the internal network and the internet.&lt;br /&gt;
&lt;br /&gt;
== Hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.5.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
/etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Buzztiger&amp;diff=21298</id>
		<title>User:Buzztiger</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Buzztiger&amp;diff=21298"/>
		<updated>2009-09-28T05:58:14Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Background&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I&#039;m a Phd student working in engineering. I&#039;ve just moved into a new home and have finally enough space to work on my own LMCE setup.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h1&amp;gt;Setup&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;h2&amp;gt;Core/Hybrid&amp;lt;/h2&amp;gt;&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* currently running the 810 alpha 2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Lounge Media Director&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Dell Precision 380 3.7 GHz running LCME via netboot&lt;br /&gt;
* 24&amp;quot; LCD&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Bedroom Media Director&amp;lt;/h2&amp;gt;&lt;br /&gt;
* HP notebook Dual Core 1.7 Ghz via netboot&lt;br /&gt;
* 24&amp;quot; LCD&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Mobile Orbiters&amp;lt;/h2&amp;gt;&lt;br /&gt;
* 2x Ipod touch via web orbiter&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Plans / ToDo&amp;lt;/h2&amp;gt;&lt;br /&gt;
* Integrate my Arduino setup&lt;br /&gt;
* Garden Irrigation&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Modifications&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* I&#039;ve added a wireless atheros card to my core and managed to integrate it as an acess point. Saves me from having another device running 24/7 and I have greater flexibilty. I have started to write down my approach under [[Access_Point]].&lt;br /&gt;
&lt;br /&gt;
[[Category:User Setups]]&lt;br /&gt;
[[Category:Australian Setups]]&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21297</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21297"/>
		<updated>2009-09-28T05:42:03Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices to connect to the core the internal network and the internet.&lt;br /&gt;
&lt;br /&gt;
== My hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620  &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.5.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
/etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21296</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21296"/>
		<updated>2009-09-28T05:41:12Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction == &lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to add Access Point functionality to your LMCE core. The core will act as a WiFi access point permitting wireless devices &lt;br /&gt;
&lt;br /&gt;
== My hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620  &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.5.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
/etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21295</id>
		<title>Access Point</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Access_Point&amp;diff=21295"/>
		<updated>2009-09-28T05:34:39Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: New page: == My hardware setup ==  * Dell Optiplex Gx620   * WiFi card with Atheros chipset (using madwifi drivers) * Linux MCE 810 alpha2  == Overview ==  the idea is to combine or bridge eth1 and ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== My hardware setup ==&lt;br /&gt;
&lt;br /&gt;
* Dell Optiplex Gx620  &lt;br /&gt;
* WiFi card with Atheros chipset (using madwifi drivers)&lt;br /&gt;
* Linux MCE 810 alpha2&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
the idea is to combine or bridge eth1 and ath0 to a new virtual interface called br0. &lt;br /&gt;
&lt;br /&gt;
* -&amp;gt; eth0 connects to my ADSL modem          (192.168.5.0)&lt;br /&gt;
* -&amp;gt; eth1 connects to my internal LAN switch (192.168.80.0)&lt;br /&gt;
* -&amp;gt; ath0 connects the wireless part of my internal network (192.168.80.0)&lt;br /&gt;
&lt;br /&gt;
== Needed packages ==&lt;br /&gt;
&lt;br /&gt;
* hostapd&lt;br /&gt;
* bridge&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Config files ==&lt;br /&gt;
&lt;br /&gt;
/etc/network/interfaces&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcp.conf&lt;br /&gt;
&lt;br /&gt;
/etc/default/dhcpd3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
== Enable WPA encryption ==&lt;br /&gt;
&lt;br /&gt;
* edit the /etc/hostapd&lt;br /&gt;
&lt;br /&gt;
== Set static IP adresses ==&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Buzztiger&amp;diff=21294</id>
		<title>User:Buzztiger</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Buzztiger&amp;diff=21294"/>
		<updated>2009-09-28T05:01:39Z</updated>

		<summary type="html">&lt;p&gt;Buzztiger: New page: &amp;lt;h1&amp;gt;Background&amp;lt;/h1&amp;gt;  I&amp;#039;m a Phd student working in engineering. I&amp;#039;ve just moved into a new home and have finally enough space to work on my own LMCE setup.  &amp;lt;h1&amp;gt;Setup&amp;lt;/h1&amp;gt; &amp;lt;h2&amp;gt;Core/Hybrid&amp;lt;/...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Background&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I&#039;m a Phd student working in engineering. I&#039;ve just moved into a new home and have finally enough space to work on my own LMCE setup.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h1&amp;gt;Setup&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;h2&amp;gt;Core/Hybrid&amp;lt;/h2&amp;gt;&lt;br /&gt;
* Dell Optiplex Gx620 &lt;br /&gt;
* currently running the 810 alpha 2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Lounge Media Director&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Dell Precision 380 3.7 GHz running LCME via netboot&lt;br /&gt;
* 24&amp;quot; LCD&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Bedroom Media Director&amp;lt;/h2&amp;gt;&lt;br /&gt;
* HP notebook Dual Core 1.7 Ghz via netboot&lt;br /&gt;
* 24&amp;quot; LCD&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Mobile Orbiters&amp;lt;/h2&amp;gt;&lt;br /&gt;
* 2x Ipod touch via web orbiter&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Plans / ToDo&amp;lt;/h2&amp;gt;&lt;br /&gt;
* Integrate my Arduino setup&lt;br /&gt;
* Garden Irrigation&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Modifications&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* I&#039;ve added a wireless atheros card to my core and managed to integrate it as an acess point. Saves me from having another device running 24/7 and I have greater flexibilty. I have started to write down my approach under &#039;&#039;Access_Point&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[Category:User Setups]]&lt;br /&gt;
[[Category:Australian Setups]]&lt;/div&gt;</summary>
		<author><name>Buzztiger</name></author>
	</entry>
</feed>