Introduction to Wireless Networks and Network Address Translation (NAT). Learn to configure wireless networks in Packet Tracer and implement different types of NAT for network connectivity and security.
A wireless network allows devices to connect without physical cables. Devices communicate using Radio Frequency (RF) signals via Access Points (APs).
| Wired | Wireless |
|---|---|
| Needs cables | No cables |
| Less mobility | High mobility |
| Setup cost higher | Setup cost lower |
| Stable connection | Can face interference |
WLAN works similar to LAN but with RF waves. AP sends wireless signals; PCs detect and join using SSID. AP often connects to wired network → provides Internet.
Topology uses Linksys Wireless Router + 6 PCs.
Go to browser → 192.168.0.1
Username: admin | Password: admin
Setup → DHCP → Disable → Save
Administration → Password → test
Wireless → Basic Wireless → Set SSID = FastNetwork
Wireless → Wireless Security → Security Mode = WEP → Key = 0123456789
| PC | IP | Mask | Gateway |
|---|---|---|---|
| 1 | 192.168.0.2 | 255.255.255.0 | 192.168.0.1 |
| 2 | 192.168.0.4 | 255.255.255.0 | 192.168.0.1 |
| 3 | 192.168.0.5 | 255.255.255.0 | 192.168.0.1 |
| 4 | 192.168.0.6 | 255.255.255.0 | 192.168.0.1 |
| 5 | 192.168.0.7 | 255.255.255.0 | 192.168.0.1 |
| 6 | 192.168.0.8 | 255.255.255.0 | 192.168.0.1 |
Desktop → PC Wireless → Refresh → Select FastNetwork → Enter WEP key → Connect
NAT maps private IPs ↔ public IPs.
Why NAT?
(NOTE: NAT ≠ Firewall)
One private IP ↔ One public IP
Used for: Servers needing public access (Example: Web server)
ip nat inside source static 192.168.0.10 209.165.200.10
Many private IPs map to pool of public IPs
One-to-one mapping but public IP varies
ip nat pool MYPOOL 209.165.200.226 209.165.200.240 netmask 255.255.255.224
access-list 1 permit 192.168.0.0 0.0.0.255
ip nat inside source list 1 pool MYPOOL
Many private IPs share one public IP
Uses different port numbers
Most common in homes/offices
access-list 1 permit 192.168.0.0 0.0.0.255
ip nat inside source list 1 interface serial 0/0/0 overload
Interfaces:
access-list 1 permit 192.168.1.2 0.0.0.0
access-list 1 permit 192.168.1.3 0.0.0.0
ip nat pool ccna 50.0.0.1 50.0.0.1 netmask 255.0.0.0
ip nat inside source list 1 pool ccna overload
interface fa0/0
ip nat inside
interface s0/0/0
ip nat outside
Interfaces:
ip nat inside source static 192.168.3.1 200.0.0.10
ip route 200.0.0.0 255.255.255.0 100.0.0.2
ip route 50.0.0.0 255.0.0.0 100.0.0.1
One-to-one mapping
For serversPool-based mapping
Many-to-manyPort-based mapping
Many-to-oneRF communication
No cables needed