Standart Configuration

Instalasi OpenWRT paket standart

unzip backfire_10.03.tar.gz

#tar -xzvf backfire_10.03.tar.gz

#cd backfire_10.03

Standart System
#make menuconfig

Target System (Atheros AR71xx/AR7240/AR913x)
Target Profile (TP-LINK TL-WR1043ND v1)
Network

  • [*] crda        (central Regulatory Domain Age)
  • [*] wpa-supplicant-mini
  • [*] wpad-mini
  • [*] hostapd-mini    (IEEE 802.1x Authentication WPA-PSK)
  • [*] ip            (routing control)
  • [*] socat        (multi purpose relay)
  • [*] wget

Utilities

  • [*] mountd    (openwrt auto mount)
  • [*] lcd4linux

Libraries

  • [*] libexpat        (lib xml parsing)

Konfigurasi

Edit file berikut:

/etc/config/network
config ‘interface’ ‘lan’
option ‘ifname’   ‘eth0.1’
option ‘type’     ‘bridge’
option ‘proto’    ‘static’
option ‘ipaddr’   ‘192.168.100.1’
option ‘netmask’  ‘255.255.255.0’
option ‘gateway’ ‘192.168.100.1’
option ‘defaultroute’ ‘0’
option ‘peerdns’ ‘0’

config ‘interface’ ‘wan’
option ‘ifname’ ‘eth0.2’
option ‘proto’    ‘static’
option ‘ipaddr’   ‘192.168.1.140’
option ‘netmask’  ‘255.255.255.240’
option ‘gateway’  ‘192.168.1.129’

/etc/config/firewall
Allow ping

/etc/config/wireless
marker #
# REMOVE THIS LINE TO ENABLE WIFI:
option disabled 0

Setelah selesai di config, lakukan Compiling

# make V=99

tunggu beberapa saat, kemudian check file image binary

cd bin/ar71xx/

file binary yang digunakan: openwrt-ar71xx-tl-wr1043nd-v1-squashfs-factory.bin
file binary ini merupakan gabungan antara kernel + rootfs

Kemudian reboot

Leave a comment