Manual Wireless Networking in Fedora 18
Alteeve Wiki :: How To :: Manual Wireless Networking in Fedora 18 |
The goal of this tutorial is to create a mobile router and firewall. The wireless connection will connect to a network and then provide a route to an internal network of machines that, themselves, do not have wireless connectivity.
OS Install
I perform a normal Fedora 18 install. Once the OS is installed, I disabled selinux and firewalld.
setenforce 0
sed -i 's/SELINUX=.*/SELINUX=disabled/' /etc/selinux/config
systemctl disable firewalld.service
I don't want the graphical interface to run on boot as this will be, essentially, an appliance. This tells the system to boot into command-line mode only (sort of like init 3 on pre-systemd linux machines).
rm -f /etc/systemd/system/default.target
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
Next, I do an OS update and reboot.
yum -y update && reboot
Configuring the Network
In my case, I want the wlan0 interface to be the default gateway. I will have two wired connections; p6p1 will face the network I want to provide dhcp services on and provide an internet connection for. The eth0 interface is totally optional. In my case, this is a slow USB ethernet device used to provide access to a dedicated management network. No dhcp services will be provided on this connection.
Any questions, feedback, advice, complaints or meanderings are welcome. | |||
Alteeve's Niche! | Alteeve Enterprise Support | Community Support | |
© 2025 Alteeve. Intelligent Availability® is a registered trademark of Alteeve's Niche! Inc. 1997-2025 | |||
legal stuff: All info is provided "As-Is". Do not use anything here unless you are willing and able to take responsibility for your own actions. |