找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
查看: 24585|回复: 105

[openwrt(x86)] 【20131101】openwrt x86 固件

 火.. [复制链接]
发表于 2013-11-1 12:07 | 显示全部楼层 |阅读模式
本帖最后由 99010 于 2013-11-13 17:26 编辑

写盘命令:

physdiskwrite.exe -u openwrt-x86-generic-combined-squashfs.img

命令输入后会出现一个大段的提示选择要把镜像安装到哪个硬盘(要仔细看好了,主硬盘是0,第二个硬盘(或者读卡器上CF卡)是1,千万别选错了,不然。。嘿嘿。。),按下1,会有个提示是否写入,选y。等待一段时间就安装完了(可能会提示写入错误,无影响)。


路由登陆地址:

http://192.168.1.1:81

1。无线默认不启动,也就是在luci界面没有相应的界面,需运行命令添加基本配置页面,参考命令如下:

wifi detect > /etc/config/wireless

2。mwan3与QOS存在冲突,这2个组件切勿同时开启。

3。不支持U启。

4。如主板没有COM口,需自行修改grub启动项。

5。samba默认是通用模板,敬请自行优化。

注明:本镜像免费使用、传播,如需技术支持请付费。


增加人气,下载地址回复可见。。。。{:soso_e113:}

基于官方attitude_adjustment镜像生成器打包生成
openwrt x86 3.3.8

基于官方attitude_adjustment,多核优化,大内存支持
openwrt x86 3.3.8 SMP





 楼主| 发表于 2013-11-1 12:16 | 显示全部楼层
本帖最后由 99010 于 2013-11-9 13:16 编辑

附送本人的mwan3配置。。双线接入(联通、电信)
  1. # This is a mwan3 example config. For mwan3 to work you will need at least:
  2. #
  3. # - 2 interfaces
  4. # - 2 members
  5. # - 1 policy
  6. # - 1 rule
  7. #
  8. # First define all your wan interfaces. Interface name must match with the
  9. # name used in your network configuration:

  10. config 'interface' 'wan'
  11.         option 'enabled' '1'
  12.         list 'track_ip' '8.8.4.4'
  13.         list 'track_ip' '8.8.8.8'
  14.         list 'track_ip' '221.7.128.68'
  15.         list 'track_ip' '221.7.136.68'
  16.         option 'reliability' '2'
  17.         option 'count' '1'
  18.         option 'timeout' '2'
  19.         option 'interval' '5'
  20.         option 'down' '3'
  21.         option 'up' '8'
  22.         option 'reroute' '1'

  23. config 'interface' 'wan1'
  24.         option 'enabled' '1'
  25.         list 'track_ip' '8.8.4.4'
  26.         list 'track_ip' '8.8.8.8'
  27.         list 'track_ip' '202.10.224.68'
  28.         list 'track_ip' '202.103.225.68'
  29.         option 'reliability' '2'
  30.         option 'count' '1'
  31.         option 'timeout' '2'
  32.         option 'interval' '5'
  33.         option 'down' '3'
  34.         option 'up' '8'
  35.         option 'reroute' '1'

  36. # Next define a member and configure metric and weight values for this member.
  37. # Each interface can have multiple member definitions. Give each member a correct
  38. # name (A-Z, a-z, 0-9, "_" and no spaces).

  39. config member 'wan_m1_w1'
  40.         option interface 'wan'
  41.         option metric '1'
  42.         option weight '1'

  43. config member 'wan1_m1_w1'
  44.         option interface 'wan1'
  45.         option metric '1'
  46.         option weight '1'

  47. # After that create a routing policy. A routing policy consist of one or more
  48. # members. Give each policy a correct name (A-Z, a-z, 0-9, "_" and no spaces). You
  49. # can create multiple policies, so that it is possible for different traffic to
  50. # have different primary and/or backup interfaces.

  51. config policy 'wan_only'
  52.         list use_member 'wan_m1_w1'

  53. config policy 'wan_wan1_loadbalanced'
  54.         list use_member 'wan_m1_w1'
  55.         list use_member 'wan1_m1_w1'

  56. # And to finish the config define your traffic rules. Rules are matched in top to
  57. # bottom order. If you define a rule and it matches, all following rules are ignored.
  58. #
  59. # If the option equalize is set, mwan3 will load-balance each new session to the same
  60. # host. If not set, it will load-balance based on destination.

  61. config 'rule' 'rule1'
  62.         option 'src_ip' '192.168.1.0/24'
  63.         option 'proto' 'tcp'
  64.         option 'dest_port' '443'
  65.         option 'use_policy' 'wan_only'

  66. config 'rule' 'rule2'
  67.         option 'src_ip' '192.168.1.0/24'
  68.         option 'proto' 'tcp'
  69.         option 'dest_port' '8000'
  70.         option 'use_policy' 'wan_only'

  71. config 'rule' 'rule3'
  72.         option 'src_ip' '192.168.1.0/24'
  73.         option 'proto' 'udp'
  74.         option 'dest_port' '8000'
  75.         option 'use_policy' 'wan_only'

  76. config 'rule' 'rule4'
  77.         option 'dest_ip' '0.0.0.0/0'
  78.         option 'use_policy' 'wan_wan1_loadbalanced'
复制代码



发表于 2013-11-1 12:21 | 显示全部楼层
yodcooyodcooyodcoo
发表于 2013-11-1 12:21 | 显示全部楼层
楼主你这个20131101版本号怎么升级上去的。不懂呀请指点下。谢谢。
发表于 2013-11-1 12:27 | 显示全部楼层
支持楼主了
发表于 2013-11-1 12:41 | 显示全部楼层
很久没见X86固件更新
发表于 2013-11-1 12:43 | 显示全部楼层
谢谢,下载下来,先保存在哪里啊。
发表于 2013-11-1 12:48 | 显示全部楼层
楼主能在做点rg100aa的固件吗。很久没出好固件了啊。谢谢。
发表于 2013-11-1 13:44 | 显示全部楼层
支持一下,
发表于 2013-11-1 13:54 | 显示全部楼层
支持楼主~
发表于 2013-11-1 14:17 | 显示全部楼层
本帖最后由 bearqq 于 2013-11-1 14:25 编辑

发固件最好把编译了的包一起发出来,因为内核不一样,好多东西直接用官方源是安装不了的。
发表于 2013-11-1 14:20 | 显示全部楼层
谢谢分享
发表于 2013-11-1 14:41 | 显示全部楼层
看看怎么样的
发表于 2013-11-1 15:35 | 显示全部楼层
[catsoul=5]给力![/catsoul]
发表于 2013-11-1 20:48 | 显示全部楼层
老规矩,先回后下!!!!!!!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

欢迎大家光临恩山无线论坛上一条 /1 下一条

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2024-6-4 23:13

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com 举报电话:0519-86695797

快速回复 返回顶部 返回列表