【韌體】Gargoyle Router Management Utility

顯示結果從第 1 筆 到 2 筆,共計 2 筆
  1. #1
    FYI
    FYI 目前未上線
    會員
    註冊日期
    2001-06-22
    討論區文章
    7,294

    【韌體】Gargoyle Router Management Utility

    Gargoyle Router Management Utility
    What is Gargoyle?
    Gargoyle is a free firmware upgrade for many widely available routers such as the WRT54GL and the original La Fonera.

    Gargoyle firmware makes it easy to:
    • Monitor bandwidth usage for every computer
    • Set quotas, ensuring that network resources are allocated fairly.
    • Block forbidden websites, or block everything except a white-list of allowed addresses.
    • Configure a wireless bridge to connect two networks without any ugly wires.
    其實小弟介紹Gargoyle 的文章散見於其他討論中, 網友也許只熟悉Tomato, 而Gargoyle 好比OpenWrt 之下的Tomato, Tomato 支援的分享器有限, 好不容易才有TeddyBear 把Tomato 移植到ASUS RT-N16, 但Gargoyle 就大不同了, 由於Gargoyle 是OpenWrt 之下的一個套件, 所以OpenWrt 所支援的分享器, Gargoyle 通常也都支援, 就在大家對於Tomato 驚艷之餘, 其實Gargoyle 正默默持續改進, 最近更推出一個新功能, 讓小弟更有理由推薦Gargoyle:
    Also, a new automatic congestion control utility, created by Paul Bixel, (first reported here) is now ready for release. This feature allows QoS to handle the case where the available bandwidth is constantly fluctuating, adjusting the total limits in QoS proportional to what is currently available instead of a fixed number. This can be configured in the QoS download page, though you need to have both upload and download QoS active for this to work.
    簡而言之就是頻寬上限不再固定不變, 而是隨著尖峰/離峰可用頻寬變動而變動, 詳細原理小弟尚未仔細研究, 該功能目前尚在測試階段, 但對於第三方韌體來說確實是一大創舉

    除了Gargoyle 優異的頻寬管理之外, 更重要的仍在於OpenWrt 的開放以及豐富的套件, 例如OpenVPN, USB, VLAN 等, 你所能想到的, 幾乎在OpenWrt 套件庫都能找到, 只要懂得靈活運用, 瞬間就可以把一台數百元的分享器變成上千元的頻寬管理器, 唯一的問題是缺乏套件設定說明, 所以要有一些Linux 和英文底子才行, 否則若在OpenWrt 討論區以中文發問, 笑話就鬧大了

    Gargoyle 刷機方法請參考 "install_guide [Gargoyle Wiki]", Gargoyle v1.2 根基於OpenWrt Kamikaze, 而Gargoyle v1.3 則根基於OpenWrt Backfire, Backfire 支援最新的802.11n 分享器, 但也因為機種太多, 所以已經無法把刷機方法概括於一篇文章之中, 請參考OpenWrt 的硬體支援列表, 以便找出各機種的刷機方法, 一些設定上的經驗談, 小弟也會持續發表在後續文章中, 然而要瞭解Gargoyle/OpenWrt, 最迅速的方法仍然是邊用邊學, 不懂就問, 才能夠學以致用

    Documentation Index [Gargoyle Wiki]
    Table of Hardware - OpenWrt Wiki
    便宜 簡單的Qos Router MZK-WNHR - PCZONE 討論區
    【韌體】ASUS WL-HDD2.5 改刷 OpenWrt Kamikaze with X-Wrt Webif² - PCZONE 討論區
    【韌體】改造 La Fonera 成為 Serial (RS232) to Ethernet Converter - PCZONE 討論區



  2. #2
    FYI
    FYI 目前未上線
    會員
    註冊日期
    2001-06-22
    討論區文章
    7,294

    Arp Binding in Gargoyle Router

    Gargoyle -> Connection -> DHCP 之下有一項 "Block MAC addresses assigned a static IP that connect from a different IP", 這就是Gargoyle 的 "IP 綁MAC" 功能, 看了以下程式碼之後大致可以瞭解就是應用 "iptables" 指令, 該注意的是Gargoyle 採用簡化過的非OpenWrt 標準格式的/etc/ethers

    /usr/lib/gargoyle_firewall_util/gargoyle_firewall_util.sh
    語法:
    block_static_ip_mismatches()
    {
    	block_mismatches=$(uci get firewall.@defaults[0].block_static_ip_mismatches 2> /dev/null)
    	if [ "$block_mismatches" = "1" ] && [ -e /etc/ethers ] ; then
    		eval $(cat /etc/ethers | sed '/^[ \t]*$/d' | awk '  { print "iptables -t filter -I forward -s ! " $2 " -m mac --mac-source " $1 " -j REJECT " ; } ' )
    	fi
    }
    /etc/config/firewall
    語法:
    config defaults
    	option syn_flood	1
    	option input		ACCEPT
    	option output		ACCEPT
    	option forward		REJECT
    	option block_static_ip_mismatches	1
    /etc/ethers (Gargoyle 所採用的格式不同於OpenWrt 標準格式)
    語法:
    00:11:22:33:44:55	192.168.1.55
    00:11:22:33:44:66	192.168.1.66
    /etc/hosts
    語法:
    127.0.0.1	localhost.
    192.168.1.55	pc55
    192.168.1.66	pc66
    DNS and DHCP configuration - OpenWrt Wiki - Static Leases
    此文章於 2010-11-26 07:33 PM 被 FYI 編輯。

類似的主題

  1. windows management instrumentation (WMI) 資訊毀損
    作者:b90220208 所在討論版:-- Windows 討 論 版
    回覆: 2
    最後發表: 2009-03-18, 11:20 AM
  2. 【問題】Router 連 wifi router / AP....可以嗎?
    作者:elias 所在討論版:-- 無 線 網 路 版
    回覆: 1
    最後發表: 2007-10-17, 02:50 PM
  3. 【軟體】Patch Management Using Software Update Services 1.0 SP1
    作者:chefou 所在討論版:-- Windows 討 論 版
    回覆: 1
    最後發表: 2005-04-08, 01:17 PM
  4. 【網站】DeepSight Threat Management System的站(Symantec)
    作者:天氣預報 所在討論版:-- 防 駭 / 防 毒 版
    回覆: 0
    最後發表: 2004-02-04, 06:51 PM
  5. 請問?何處可以下載cisco router 的韌體
    作者:chemyuan 所在討論版:-- 網 路 硬 體 版
    回覆: 5
    最後發表: 2003-09-03, 11:27 AM

 

gargoyle router openvpn

主題 Tag 標籤

發表文章規則

  • 不可以發表新主題
  • 不可以回覆文章
  • 不可以上傳附加檔案
  • 不可以編輯自己的文章
  •