OpenWrt Forum Archive

Topic: Wan port not working ?!?!? wrg150N v1.1

The content of this topic has been archived on 28 Apr 2018. There are no obvious gaps in this topic, but there may still be some posts missing at the end.

Well, after flashing bleeding edge. then 7.09 i found that the WAN port does not work.
I checked my vlan and isolated an "extra" port (4) that is not accessable anywhere and excluded it from the vlan

wan is ETH1

however tcp dump shows that after assigning a static ip, it does NOT reply to arp requests

01:07:43.220424 arp who-has 192.168.1.22 tell 192.168.1.2
01:07:48.720565 arp who-has 192.168.1.22 tell 192.168.1.2
01:07:54.220719 arp who-has 192.168.1.22 tell 192.168.1.2


(1.22 is the router's wan and 1.2 is a computer)

i check to see if the arps are being ingnored in proc and they all say 0.

Can some one please shed some light on this?

can you retrieve the output of `nvram show' and and the output of `cat /proc/diag/model' paste them here? I'll try to get the board detected properly.

NVRAM -> running 2.6... no nvram ability


cat /proc/diag/model
Linksys WRT54G/GS/GL

(its actualy a WRT150N v1.1)


root@OpenWrt:/etc/config# cat network
#### VLAN configuration
config switch eth0
        option vlan0    "0 1 2 3 5u"
#        option vlan1    "5u"


#### Loopback configuration
config interface loopback
        option ifname   "lo"
        option proto    static
        option ipaddr   127.0.0.1
        option netmask  255.0.0.0


#### LAN configuration
config interface lan
        option type     ''
        option ifname   "eth0"
        option macaddr  "00:1c:10:96:28:cb"
        option proto    static
        option ipaddr   '192.168.0.44'
        option netmask  255.255.255.0
        option gateway  '192.168.0.2'
        option dns      '192.168.0.2'


#### WAN configuration
config interface        wan
        option ifname   "eth1"
        option macaddr  "00:1c:10:96:28:cc"
        option proto    dhcp


root@OpenWrt:/etc/config# iptables -L
Chain INPUT (policy DROP)
target     prot opt source               destination
DROP       all  --  anywhere             anywhere            state INVALID
ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED
DROP       tcp  --  anywhere             anywhere            tcp option=!2 flags:SYN/SYN
input_rule  all  --  anywhere             anywhere
input_wan  all  --  anywhere             anywhere
LAN_ACCEPT  all  --  anywhere             anywhere
ACCEPT     icmp --  anywhere             anywhere
ACCEPT     gre  --  anywhere             anywhere
REJECT     tcp  --  anywhere             anywhere            reject-with tcp-reset
REJECT     all  --  anywhere             anywhere            reject-with icmp-port-unreachable

Chain FORWARD (policy DROP)
target     prot opt source               destination
DROP       all  --  anywhere             anywhere            state INVALID
TCPMSS     tcp  --  anywhere             anywhere            tcp flags:SYN,RST/SYN TCPMSS clamp to PMTU
ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED
forwarding_rule  all  --  anywhere             anywhere
forwarding_wan  all  --  anywhere             anywhere
ACCEPT     all  --  anywhere             anywhere
ACCEPT     all  --  anywhere             anywhere

Chain OUTPUT (policy DROP)
target     prot opt source               destination
DROP       all  --  anywhere             anywhere            state INVALID
ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED
output_rule  all  --  anywhere             anywhere
ACCEPT     all  --  anywhere             anywhere
REJECT     tcp  --  anywhere             anywhere            reject-with tcp-reset
REJECT     all  --  anywhere             anywhere            reject-with icmp-port-unreachable

Chain LAN_ACCEPT (1 references)
target     prot opt source               destination
RETURN     all  --  anywhere             anywhere
ACCEPT     all  --  anywhere             anywhere

Chain forwarding_rule (1 references)
target     prot opt source               destination

Chain forwarding_wan (1 references)
target     prot opt source               destination

Chain input_rule (1 references)
target     prot opt source               destination

Chain input_wan (1 references)
target     prot opt source               destination

Chain output_rule (1 references)
target     prot opt source               destination

ifconfig (note the eth1 ip was configured manually.. not via dhcp.. dhcp no works)

eth0      Link encap:Ethernet  HWaddr 00:1C:10:96:28:CB
          inet addr:192.168.0.44  Bcast:192.168.0.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:10094 errors:0 dropped:0 overruns:0 frame:0
          TX packets:7392 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:1015629 (991.8 KiB)  TX bytes:1853397 (1.7 MiB)
          Interrupt:4

eth1      Link encap:Ethernet  HWaddr 00:1C:10:96:28:CC
          inet addr:192.168.1.22  Bcast:192.168.1.255  Mask:255.255.255.0
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:331 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:23437 (22.8 KiB)  TX bytes:0 (0.0 B)
          Interrupt:5

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:207 errors:0 dropped:0 overruns:0 frame:0
          TX packets:207 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:14744 (14.3 KiB)  TX bytes:14744 (14.3 KiB)



root@OpenWrt:/etc/config# uci show
cron.cfg1=crond
cron.cfg1.enable=1
dhcp.cfg1=dhcp
dhcp.cfg1.TYPE=dhcp
dhcp.cfg1.interface=lan
dhcp.cfg1.start=100
dhcp.cfg1.limit=150
dhcp.cfg1.leasetime=12h
dhcp.cfg2=dhcp
dhcp.cfg2.interface=wan
dhcp.cfg2.ignore=1
dropbear.cfg1=dropbear
dropbear.cfg1.TYPE=dropbear
dropbear.cfg1.PasswordAuth=on
dropbear.cfg1.Port=22
network.eth0=switch
network.eth0.vlan0=0 1 2 3 5u
network.loopback=interface
network.loopback.ifname=lo
network.loopback.proto=static
network.loopback.ipaddr=127.0.0.1
network.loopback.netmask=255.0.0.0
network.lan=interface
network.lan.ifname=eth0
network.lan.macaddr=00:1c:10:96:28:cb
network.lan.proto=static
network.lan.ipaddr=192.168.0.44
network.lan.netmask=255.255.255.0
network.lan.gateway=192.168.0.2
network.lan.dns=192.168.0.2
network.wan=interface
network.wan.ifname=eth1
network.wan.macaddr=00:1c:10:96:28:cc
network.wan.proto=static
network.wan.ipaddr=192.168.1.22
network.wan.netmask=255.255.255.0
openvpn.general=openvpn
openvpn.client=openvpn
syslog.cfg1=syslogd
syslog.cfg1.TYPE=syslogd
syslog.cfg1.size=16
syslog.cfg1.type=circular
syslog.cfg1.mark=0
syslog.cfg2=klogd
syslog.cfg2.TYPE=klogd
syslog.cfg3=dmesg
syslog.cfg4=dmesgbackup
syslog.cfg4.enabled=0
syslog.cfg4.file=/var/log/dmesg
syslog.cfg4.gzip=1
system.cfg1=system
system.cfg1.TYPE=system
system.cfg1.hostname=OpenWrt
webif.general=webif
webif.general.TYPE=webif
webif.general.lang=en
webif.general.firmware_name=OpenWrt Kamikaze
webif.general.firmware_version=7.09
webif.general.firmware_subtitle=With X-Wrt Extensions
webif.general.device_name=Linksys WRT54G/GS/GL
webif.theme=webif
webif.theme.id=xwrt
webif.qos=webif
webif.qos.show_advanced_rules=0
webif.misc=webif
webif.misc.opendns=0
webif.wireless=webif
webif.firewall=webif
webif.firewall.log=0
webifssl.matrixtunnel=webifssl
webifssl.matrixtunnel.enable=0
webifssl.certificates=webifssl
webifssl.certificates.cafile=/etc/ssl/matrixtunnel.cert
webifssl.certificates.privkey=/etc/ssl/matrixtunnel.key
webifssl.listen=webifssl
webifssl.listen.port=443
webifssl.remote=webifssl
webifssl.remote.host=127.0.0.1
webifssl.remote.port=80
webifssl.syslog=webifssl
webifssl.syslog.enable=0
webifssl.syslog.loglevel=0

(Last edited by darkdrgn2k on 3 Apr 2008, 20:07)

i had ddwrt installed to try ... same problem

but here the nv ram dump...

root@WRT150N:~# nvram show | more
olsrd_coverage=7
wl_wds1_if=
wl0.1_radius_port=1812
ses_script=
filter_dport_grp3=
wl_mac_deny=
wl_radius_port=1812
wl_wds2_ospf=
filter_dport_grp4=
http_redirect_port=3128
wan_unit=0
filter=on
filter_dport_grp5=
NC_Verbosity=2
wds0.1=
wl0_net_mode=disabled
sv_localdns=192.168.0.2
os_ram_addr=80001000
filter_dport_grp6=
dmz_dst_ip=1
altdns1=
wds0.2=
wl_br1_enable=0
chilli_interface=br0
nvram_ver=2
pci/1/1/stbcpo=0
pci/1/1/pa2gw1a0=0
ping_size=32
filter_dport_grp7=
altdns2=
wds0.3=
wl_wds9_netmask=
pci/1/1/pa2gw1a1=0
filter_dport_grp8=
wl0_frameburst=on
wds_watchdog_interval_sec=1000
altdns3=
wds0.4=
is_disconn_button=0
filter_dport_grp9=
zebra_log=0
wds0.5=
log_ipaddr=0
ddns_username_2=
NC_RenewTimeout=0
wds0.6=
chilli_enable=0
ddns_username_3=
boardrev=0x11
wds0.7=
ddns_username_4=
ppp_passwd=
ppp_idletime=15
NC_SplashURL=
zebra_copt=0
wds0.8=
httpsd_enable=1
ddns_username_5=
wds0.9=
ddns_username_6=
wl_nctrlsb=lower
wl_wds3_enable=0
ddns_username_7=
snmpd_rocommunity=public
ddns_username_8=
wl0.3_key=1
et0macaddr=00:1c:10:96:28:cb
bootnv_ver=5
wl0_leddc=0x640000
ddns_enable=0
qos_done=0
NC_MaxMissedARP=5
wl0_ipaddr=0.0.0.0
dmz_src_ip=0.0.0.0 0
NC_MACWhiteList=
ddns_conf=
wl0.2_radius_port=1812
wl0_shortslot=auto
ipsec_debug=1
skip_intel_check=0
skip_intel_check=0
qos_appport1=0
wl_wds9_enable=0
wan_get_dns=
d11g_mode=-1
wl0_akm=
wl_maxassoc=128
ddns_hostname_buf=
qos_appport2=0
radio_timer_enable=0
wl_wds2_hwaddr=
syslogd_rem_ip=
watchdog=5000
boot_wait=on
qos_appport3=0
nas_enable=1
filter_web_host1=
wl_phytypes=
wl_leddc=0x640000
qos_appport4=0
tftpd_enable=1
wl0_infra=1
wl0.2_netmask=0.0.0.0
filter_web_host2=
qos_appport5=0
et0mdcport=0
wl0_country_code=US
fw_disable=0
filter_web_host3=
qos_appport6=0
pptpd_client_srvsub=
wl_wds0_if=
filter_web_host4=
pppoe_keepalive=0
router_name=WRT150N
qos_appport7=0
wshaper_enable=0
sh_masq=br0 wds0.2
wl_wds8_hwaddr=
filter_web_host5=
qos_appport8=0
wd_url=
wl_distance=2000
filter_web_host6=
https_enable=0
ddns_wildcard=OFF
wl_wds10_if=
apwatchdog_enable=0
wl0.2_wpa_psk=
filter_web_host7=
wl_infra=1
svqos_port2bw=FULL
ses_event=2
filter_web_host8=
l2tp_get_ip=
dhcpfwd_ip=0.0.0.0
filter_web_host9=
wl_wds1_ipaddr=
pmon_ver=CFE 4.151.10.5
ppp_get_ac=
pptp_server_ip=
ddns_time=
get_sn=CQ611G812358
restore_defaults=0
kaid_user=
pptp_use_dhcp=0
wshaper_downlink=0
wl0.3_radius_key=
wl0.3_radius_port=1812
wl0.1_key=1
pptpd_client_srvip=
wl_wds7_ipaddr=
ppp_username=
sh_rules=
filter_port=
wan_lease=0
wl0_nctrlsb=upper
wl0_wme_sta_be=15 1023 3 0 0 off off
QoS_lan_ctl=0
wl0.3_auth_mode=disabled
wl0.3_auth_mode=disabled
dmz_mac=00:00:00:00:00:00
d11g_dtim=1
wl_wme_apsd=off
ddns_enable_buf=
wl0.2_ssid=
filter_ip_grp1=
http_wanport=8080
wl_radius_ipaddr=
ddns_hostname=
ip_conntrack_tcp_timeouts=300 600 120 60 120 120 10 60 30 120
machine_name=LinksysWRT300N
wl_wchannel=0
lan_gateway=192.168.0.2
filter_ip_grp2=
filter_ip_grp3=
wl0_ifname=eth2
lan_domain=
filter_ip_grp4=
dr_lan_rx=0
reconnect_enable=0
snmpd_rwcommunity=private
pci/1/1/ag0=2
timer_interval=30
filter_ip_grp5=
wl0_wme_sta_bk=15 1023 7 0 0 off off
log_accepted=0
hs_html=
pci/1/1/ag1=2
filter_ip_grp6=
pptpd_client_ipparam=
wshaper_uplink=0
chilli_backup=0.0.0.0
lan1_ipaddr=192.168.2.1
filter_rule1=
filter_ip_grp7=
pppoe_ac=
wl_net_reauth=36000
pptpd_client_srvsec=mppe required
loopback_enable=1
ses_button=0
filter_rule2=
filter_ip_grp8=
ipsec_pass=1
hb_server_ip=
qos_devmac1=00:00:00:00:00:00
vlan0ports=1 2 3 4 5*
rflow_enable=0
ses_enable=1
boot_ok=not_ok
filter_rule3=
filter_ip_grp9=
qos_devmac2=00:00:00:00:00:00
expert_mode=1
schedule_minutes=0
wl0.2_key1=
filter_rule4=
mmc_cs=0
port5vlans=0 1 16
wl0.2_key2=
lan_route=
filter_rule5=
wl0.2_key3=
filter_rule6=
filter_ip_grp10=
wl0_mrate=0
wol_passwd=
wl0.2_key4=
wan_gateway=0.0.0.0
filter_rule7=
wl0_mode=ap
filter_rule8=
dhcp_start=100
chilli_uamanydns=0
filter_rule9=
pptpd_enable=0
lan1_route=
wl0_ap_isolate=0
ident_pass=0
svqos_port4prio=10
svqos_port4prio=10
chilli_uamallowed=
wl_mrate=0
NC_DocumentRoot=/www
wshaper_nopriohostsrc=
chilli_radius=0.0.0.0
ddns_force=10
dist_type=std
os_flash_addr=bfc40000
wsc_akm=disabled
wl_akm=
l2tp_server_ip=
wd_interval=60
sromrev=2
dhcp_lease=0
wl0_gmode=-1
wl0_ampdu=on
wl0_wme_no_ack=off
pci/1/1/ccdpo=0
qos_devpri1=0
kaid_devs=1
wds_watchdog_ips=
get_mac_index=1
remote_ip_any=1
qos_devpri2=0
wl_wds2_netmask=
wl_wds4_enable=0
wl0.2_wpa_gtk_rekey=3600
boardtype=0x0472
chilli_additional=
chilli_nowifibridge=0
dnsmasq_enable=1
wl_active_add_mac=0
is_default=0
wl_wme_bss_disable=0
kaid_macs=
port3vlans=0
et1macaddr=00:88:88:88:00:2a
ping_ip=
wl_gmode=-1
wl0_nband=2
wl_ampdu=on
wl_wds9_desc=
pci/1/1/txpid2ga0=82
get_pa1_index=1
stats_server=
wd_gwport=2060
wl_br1_nat=0
pci/1/1/rxchain=3
pci/1/1/txpid2ga1=90
static_route=
sock_rmem_max=66560
sip_port=5060
d11g_rate=0
wl0_nreqd=0
need_commit=1
pptpd_client_mtu=1450
wl_wds3_hwaddr=
radvd_conf=
wl0_security_mode=disabled
wl0.1_crypto=off
wl0.3_bridged=1
lan_netmask=255.255.255.0
lan1_ifname=br1
dmz_enable=0
wl_nband=2
ddns_backmx=NO
wifi_display=wl0
wl_wds6_netmask=
lan1_hwnames=
http_username=bJ/GddyoJuiU2
wl0_ssid=linksys
wl0_dtim=1
wl_wme_sta_vi=7 15 2 6016 3008 off off
http_source_network=0.0.0.0
apd_enable=0
sh_routestopped=br0 -
eth0 -
eth2 -
wds0.2 -
wds0.2 -
et1mdcport=0
port_trigger=
manual_rate=0
wd_httpdcon=10
mmc_di=0
wl_wds9_hwaddr=
filter_web_host10=
wl_nreqd=0
wl_wme_ap_be=15 63 3 0 0 off off
qos_devname1=
os_date=Jun 23 2007
qos_devname2=
http_redirect_enable=0
svqos_port2prio=10
cron_enable=1
olsrd_lqwinsize=100
olsrd_lqfisheye=1
http_lanport=80
filter_mac_grp1=
wl_plcphdr=long
wl_wme_sta_vo=3 7 2 3264 1504 off off
port1vlans=0
wl_wds2_ipaddr=
pci/1/1/txpt2g=0x36
lan1_wins=
filter_mac_grp2=
ppp_redialperiod=30
ppp_service=
wl_macmode=disabled
mmc_do=0
mmc_gpio=0
wl_wds7_desc=
hopdwell=1000
pci/1/1/pa2gw0a0=0
nvram_version=1
wan_hwname=
wan_domain=
filter_mac_grp3=
wl_wme_ap_bk=15 1023 7 0 0 off off
radiooff_button=0
pci/1/1/pa2gw0a1=0
lan_lease=86400
wan_netmask=255.255.255.0
filter_mac_grp4=
wl_phytype=g
wl0_key1=
kaid_orbdeepport=34523
chilli_macauth=0
filter_mac_grp5=
pppoe_static_ip=
wl_lazywds=1
wl0_key2=
wl0_vlan_prio_mode=off
ddns_wildcard_6=
filter_mac_grp6=
wl0_key3=
wl_dfs_postism=60
pptpd_client_srvsubmsk=
sputnik_mjid_type=0
wl_wds8_ipaddr=
chilli_radiusnasid=
ddns_wildcard_7=
filter_mac_grp7=
wl0_key4=
wshaper_nopriohostdst=
ddns_url=
wl0_bridged=1
filter_client0=
filter_mac_grp8=
chilli_url=
lan1_lease=86400
filter_maclist=
filter_mac_grp9=
wl_wds10_enable=0
pci/1/1/boardflags=0x200
parkid=0
ppp_demand=0
wl_auth_mode=none
pptp_get_ip=
loc eth2
net wds0.2
d11g_rts=2347
block_activex=0
wan_ifname2=
get_pa1_old_index=0
wl0.1_ipaddr=0.0.0.0
http_passwd=4DZYhHHTxfhm.
wl_wpa_psk=
remote_mgt_https=0
wl_wds9_ospf=
wl_wds5_desc=
block_wan=1
wl0.3_netmask=0.0.0.0
lan_stp=0
wl0.3_radius_ipaddr=
wl0.3_akm=disabled
pppoe_wan_ifname=eth1
wl0_wme_ap_vi=7 15 1 6016 3008 off off
wl0.1_radius_key=
upnpmnp=0
router_style=elegant
wl_mode=ap
skip_amd_check=0
kaid_uibind=34522
pppd_pppifname=
wl_wds9_if=
forward_spec=
default_lang=0
bird_ospf=Please read the BIRD setup instructions at http://bird.network.cz/bird
.html
wl0.3_wpa_psk=
wl0_closed=0
wl0_rate=0
wl0_plcphdr=long
schedule_enable=0
wl0gpio0=8
wl0_macmode=disabled
d11g_rateset=default
wl_wpa_gtk_rekey=3600
svqos_port1bw=FULL
lan_dhcp=0
wl0_wme_ap_vo=3 7 1 3264 1504 off off
wl0_radioids=BCM2055
pptpd_client_srvmru=1450
pci/1/1/boardvendor=0x14e4
wl0_phytype=n
NC_RouteOnly=0
filter_services0=$NAME:003:aim$PROT:002:l7$PORT:003:0:0< >$NAME:013:aimwebc
ontent$PROT:002:l7$PORT:003:0:0< >$NAME:010:armagetron$PROT:002:l7$PORT:003
:0:0< >$NAME:010:applejuice$PROT:003:p2p$PORT:003:0:0< >$NAME:004:ares
$PROT:003:p2p$PORT:003:0:0< >$NAME:011:audiogalaxy$PROT:002:l7$PORT:003:0:0
< >$NAME:006:100bao$PROT:002:l7$PORT:003:0:0< >$NAME:015:battlefield19
42$PROT:002:l7$PORT:003:0:0< >$NAME:012:battlefield2$PROT:002:l7$PORT:003:0
:0< >$NAME:003:bgp$PROT:002:l7$PORT:003:0:0< >$NAME:004:biff$PROT:002:
l7$PORT:003:0:0< >$NAME:010:bittorrent$PROT:003:p2p$PORT:003:0:0< >$NA
ME:006:chikka$PROT:002:l7$PORT:003:0:0< >$NAME:004:cimd$PROT:002:l7$PORT:00
3:0:0< >$NAME:008:ciscovpn$PROT:002:l7$PORT:003:0:0< >$NAME:006:citrix
$PROT:002:l7$PORT:003:0:0< >$NAME:008:code_red$PROT:002:l7$PORT:003:0:0<&nb
sp;>$NAME:020:counterstrike-source$PROT:002:l7$PORT:003:0:0< >$NAME:003:cvs
$PROT:002:l7$PORT:003:0:0< >
filter_tod_buf1=
wl0_lazywds=1
security_mode2=disabled
dr_wan_rx=0
sputnik_rereg=1
olsrd_lqdijkstramin=0
filter_services1=$NAME:018:dayofdefeat-source$PROT:002:l7$PORT:003:0:0< >$N
AME:004:dhcp$PROT:002:l7$PORT:003:0:0< >$NAME:013:directconnect$PROT:003:p2
p$PORT:003:0:0< >$NAME:003:dns$PROT:002:l7$PORT:003:0:0< >$NAME:005:do
om3$PROT:002:l7$PORT:003:0:0< >$NAME:007:edonkey$PROT:003:p2p$PORT:003:0:0<
 >$NAME:003:exe$PROT:002:l7$PORT:003:0:0< >$NAME:009:fasttrack$PROT:00
2:l7$PORT:003:0:0< >$NAME:006:finger$PROT:002:l7$PORT:003:0:0< >$NAME:
005:flash$PROT:002:l7$PORT:003:0:0< >$NAME:007:freenet$PROT:002:l7$PORT:003
:0:0< >$NAME:003:ftp$PROT:002:l7$PORT:003:0:0< >$NAME:003:gif$PROT:002
:l7$PORT:003:0:0< >$NAME:007:gkrellm$PROT:002:l7$PORT:003:0:0< >$NAME:
011:gnucleuslan$PROT:002:l7$PORT:003:0:0< >$NAME:008:gnutella$PROT:003:p2p$
PORT:003:0:0< >$NAME:007:goboogy$PROT:002:l7$PORT:003:0:0< >$NAME:006:
gopher$PROT:002:l7$PORT:003:0:0< >$NAME:004:h323$PROT:002:l7$PORT:003:0:0<&
nbsp;>$NAME:020:halflife2-deathmatch$PROT:002:l7$PORT:003:0:0< >
nbsp;>$NAME:020:halflife2-deathmatch$PROT:002:l7$PORT:003:0:0< >
filter_tod_buf2=
https_key=
block_proxy=0
NC_GatewayPort=5280
rflow_port=2055
snmpd_syslocation=Unknown
filter_services2=$NAME:007:hddtemp$PROT:002:l7$PORT:003:0:0< >$NAME:007:hot
line$PROT:002:l7$PORT:003:0:0< >$NAME:004:html$PROT:002:l7$PORT:003:0:0<&nb
sp;>$NAME:004:http$PROT:002:l7$PORT:003:0:0< >$NAME:008:http-dap$PROT:002:l
7$PORT:003:0:0< >$NAME:010:http-fresh$PROT:002:l7$PORT:003:0:0< >$NAME
:011:http-itunes$PROT:002:l7$PORT:003:0:0< >$NAME:009:http-rtsp$PROT:002:l7
$PORT:003:0:0< >$NAME:009:httpaudio$PROT:002:l7$PORT:003:0:0< >$NAME:0
12:httpcachehit$PROT:002:l7$PORT:003:0:0< >$NAME:013:httpcachemiss$PROT:002
:l7$PORT:003:0:0< >$NAME:009:httpvideo$PROT:002:l7$PORT:003:0:0< >$NAM
E:005:ident$PROT:002:l7$PORT:003:0:0< >$NAME:004:imap$PROT:002:l7$PORT:003:
0:0< >$NAME:005:imesh$PROT:002:l7$PORT:003:0:0< >$NAME:003:ipp$PROT:00
2:l7$PORT:003:0:0< >$NAME:003:irc$PROT:002:l7$PORT:003:0:0< >$NAME:006
:jabber$PROT:002:l7$PORT:003:0:0< >$NAME:004:jpeg$PROT:002:l7$PORT:003:0:0<
 >$NAME:005:kugoo$PROT:002:l7$PORT:003:0:0< >
filter_tod_buf3=
qos_type=0
wl_wds7_ospf=
wl_wds3_desc=
chilli_pass=
pptpd_rip=
filter_services3=$NAME:007:live365$PROT:002:l7$PORT:003:0:0< >$NAME:012:liv
eforspeed$PROT:002:l7$PORT:003:0:0< >$NAME:003:lpd$PROT:002:l7$PORT:003:0:0
< >$NAME:005:mohaa$PROT:002:l7$PORT:003:0:0< >$NAME:012:msnmessenger$P
ROT:002:l7$PORT:003:0:0< >$NAME:016:msn-filetransfer$PROT:002:l7$PORT:003:0
:0< >$NAME:004:mute$PROT:002:l7$PORT:003:0:0< >$NAME:007:napster$PROT:
002:l7$PORT:003:0:0< >$NAME:004:nbns$PROT:002:l7$PORT:003:0:0< >$NAME:
003:ncp$PROT:002:l7$PORT:003:0:0< >$NAME:007:netbios$PROT:002:l7$PORT:003:0
:0< >$NAME:005:nimda$PROT:002:l7$PORT:003:0:0< >$NAME:004:nntp$PROT:00
2:l7$PORT:003:0:0< >$NAME:003:ntp$PROT:002:l7$PORT:003:0:0< >$NAME:003
:ogg$PROT:002:l7$PORT:003:0:0< >$NAME:006:openft$PROT:002:l7$PORT:003:0:0<&
nbsp;>$NAME:010:pcanywhere$PROT:002:l7$PORT:003:0:0< >$NAME:003:pdf$PROT:00
2:l7$PORT:003:0:0< >$NAME:004:perl$PROT:002:l7$PORT:003:0:0< >$NAME:00
4:poco$PROT:002:l7$PORT:003:0:0< >
blink_diag_led=1
upnp_ssdp_interval=60
filter_tod_buf4=
port_rate_limit_1=0
filter_services4=$NAME:004:pop3$PROT:002:l7$PORT:003:0:0< >$NAME:010:postsc
ript$PROT:002:l7$PORT:003:0:0< >$NAME:009:pressplay$PROT:002:l7$PORT:003:0:
0< >$NAME:002:qq$PROT:002:l7$PORT:003:0:0< >$NAME:014:quake-halflife$P
ROT:002:l7$PORT:003:0:0< >$NAME:006:quake1$PROT:002:l7$PORT:003:0:0< >
$NAME:009:quicktime$PROT:002:l7$PORT:003:0:0< >$NAME:006:radmin$PROT:002:l7
$PORT:003:0:0< >$NAME:003:rar$PROT:002:l7$PORT:003:0:0< >$NAME:003:rdp
$PROT:002:l7$PORT:003:0:0< >$NAME:012:replaytv-ivs$PROT:002:l7$PORT:003:0:0
< >$NAME:006:rlogin$PROT:002:l7$PORT:003:0:0< >$NAME:003:rpm$PROT:002:
l7$PORT:003:0:0< >$NAME:003:rtf$PROT:002:l7$PORT:003:0:0< >$NAME:004:r
tsp$PROT:002:l7$PORT:003:0:0< >$NAME:009:shoutcast$PROT:002:l7$PORT:003:0:0
< >$NAME:003:sip$PROT:002:l7$PORT:003:0:0< >$NAME:008:skypeout$PROT:00
2:l7$PORT:003:0:0< >$NAME:012:skypetoskype$PROT:002:l7$PORT:003:0:0< >
$NAME:003:smb$PROT:002:l7$PORT:003:0:0< >
filter_tod_buf5=
port_rate_limit_2=0
wl_wds5_enable=0
wl0_netmask=0.0.0.0
filter_services5=$NAME:004:smtp$PROT:002:l7$PORT:003:0:0< >$NAME:004:snmp$P
ROT:002:l7$PORT:003:0:0< >$NAME:008:snmp-mon$PROT:002:l7$PORT:003:0:0<&nbsp
;>$NAME:009:snmp-trap$PROT:002:l7$PORT:003:0:0< >$NAME:005:socks$PROT:002:l
7$PORT:003:0:0< >$NAME:008:soribada$PROT:002:l7$PORT:003:0:0< >$NAME:0
08:soulseek$PROT:003:p2p$PORT:003:0:0< >$NAME:004:ssdp$PROT:002:l7$PORT:003
:0:0< >$NAME:003:ssh$PROT:002:l7$PORT:003:0:0< >$NAME:003:ssl$PROT:002
:l7$PORT:003:0:0< >$NAME:004:stun$PROT:002:l7$PORT:003:0:0< >$NAME:008
:subspace$PROT:002:l7$PORT:003:0:0< >$NAME:010:subversion$PROT:002:l7$PORT:
003:0:0< >$NAME:003:tar$PROT:002:l7$PORT:003:0:0< >$NAME:013:teamfortr
ess2$PROT:002:l7$PORT:003:0:0< >$NAME:009:teamspeak$PROT:002:l7$PORT:003:0:
0< >$NAME:006:telnet$PROT:002:l7$PORT:003:0:0< >$NAME:005:tesla$PROT:0
02:l7$PORT:003:0:0< >$NAME:004:tftp$PROT:002:l7$PORT:003:0:0< >$NAME:0
09:thecircle$PROT:002:l7$PORT:003:0:0< >$NAME:003:tls$PROT:002:l7$PORT:003:
0:0< >
filter_tod_buf6=
wl0_afterburner=off
dr_lan_tx=0
port_rate_limit_3=0
http_client_ip=192.168.0.247
NC_SplashURLTimeout=21600
NC_SplashURLTimeout=21600
wol_macs=
apwatchdog_interval=15
filter_services6=$NAME:003:tor$PROT:002:l7$PORT:003:0:0< >$NAME:003:tsp$PRO
T:002:l7$PORT:003:0:0< >$NAME:007:unknown$PROT:002:l7$PORT:003:0:0< >$
NAME:004:uucp$PROT:002:l7$PORT:003:0:0< >$NAME:012:validcertssl$PROT:002:l7
$PORT:003:0:0< >$NAME:008:ventrilo$PROT:002:l7$PORT:003:0:0< >$NAME:00
3:vnc$PROT:002:l7$PORT:003:0:0< >$NAME:005:winmx$PROT:003:p2p$PORT:003:0:0<
 >$NAME:005:whois$PROT:002:l7$PORT:003:0:0< >$NAME:015:worldofwarcraft
$PROT:002:l7$PORT:003:0:0< >$NAME:003:x11$PROT:002:l7$PORT:003:0:0< >$
NAME:008:xboxlive$PROT:002:l7$PORT:003:0:0< >$NAME:006:xunlei$PROT:002:l7$P
ORT:003:0:0< >$NAME:005:yahoo$PROT:002:l7$PORT:003:0:0< >$NAME:003:zip
$PROT:002:l7$PORT:003:0:0< >$NAME:005:zmaap$PROT:002:l7$PORT:003:0:0< 
>
upnpcas=0
lan_hwaddr=00:1C:10:96:28:CB
filter_tod10=
filter_tod_buf7=
wl_wds_timeout=1
port_rate_limit_4=0
radius_override=1
wl0.1_auth_mode=disabled
filter_services7=
wan_dns=
filter_tod_buf8=
filter_tod_buf9=
http_client_mac=00:17:9A:84:61:8C
action_service= index  services wireless
wl0.1_akm=disabled
pci/1/1/bw40po=0
ipv6_enable0=0
wl_wds4_hwaddr=
wl_shortslot=auto
get_pa0_old=
wl_ssid=linksys
wl_dtim=1
ip_conntrack_max=8192
forward_entries=0
log_dropped=0
dhcpd_usenvram=0
wl0.2_crypto=off
pci/1/1/sromrev=4
wl0_wpa_psk=
wait_time=3
wl_br1_ipaddr=0.0.0.0
ppp_mppe=
web_wl_filter=0
d11g_bcn=100
public_ip=
pci/1/1/venid=0x14e4
wl0_amsdu=off
dns_dnsmasq=1
macupd_ip=0.0.0.0
wl0.2_auth=0
flash_type=AMD 29lv320DT 2Mx16 TopB
daylight_time=1
wl_passphrase=
wl_wds8_if=
wl_wds5_ospf=
wl_wds1_desc=
dhcp_wins=wan
security_mode=disabled
upgrade_delay=300
os_server=
filter_tod_buf10=
multicast_pass=1
fon_usernames=0
pppoe_static=0
wd_timeout=5
remote_mgt_ssh=0
port_swap=0
wan_proto=dhcp
wl_key1=
wl_amsdu=off
hb_server_domain=
olsrd_lqdijkstramax=5.0
wl_wds3_ipaddr=
wl_key2=
mmc_enable=0
ospfd_conf=
wl_key3=
wl0_unit=0
wshaper_noprioportsrc=
wds0.10=
wl_country_code=US
wl_key4=
NC_IncludePorts=
wds0.11=
wl_hwaddr=
ddns_cache=
pptpd_client_srvpass=
enable_jffs2=0
wds0.12=
wl_wds9_ipaddr=
pci/1/1/boardrev=0x4b
aol_block_traffic1=0
QoS_lan_speed=61440
wds0.13=
static_route_name=
aol_block_traffic2=0
wds0.14=
tftpd_ipaddr=192.168.1.254
wl_vlan_prio_mode=off
wds0.15=
wl_wds3_netmask=
samba_script=yourscript
lan1_stp=1
wl0_nmode=-1
wds0.16=
pci/1/1/itt2ga0=0
ntp_enable=1
wl_net_mode=disabled
wl_active_mac=
wl_wds3_ospf=
pci/1/1/itt2ga1=0
dhcp_statics=
enable_game=0
remote_ip=0.0.0.0 0
ddns_custom_5=
wl_radarargs_11a=5 4 4 100 0x2b0 0x2f0 0x0 0x0 8 500 4000 10 240000000 1000 3000
000
forward_port=
NC_HomePage=http://www.dd-wrt.com
smtp_redirect_enable=0
sys_enable_jffs2=0
wl_nmode=-1
wshaper_dev=WAN
wl_wds10_netmask=
wl_wds10_hwaddr=
samba_user=username/computer
wl0.2_ipaddr=0.0.0.0
pci/1/1/pa2gw3a0=0
lan1_gateway=192.168.2.1
olsrd_redundancy=2
wd_hostname=
pci/1/1/pa2gw3a1=0
pci/1/1/maxp2ga0=0
d11g_frag=2346
pci/1/1/maxp2ga1=0
sel_qosport1=0
snmpd_sysname=dd-wrt
wl_wds7_netmask=
filter_mac_grp10=
wl0_wds=
sel_qosport2=0
squid_watchdog_interval_sec=120
wanup=1
sh_policy=loc net ACCEPT
net all DROP info
all all REJECT info
wl_wds7_if=
ddns_dyndnstype_6=
ppp_static_ip=
wl_rate=0
sel_qosport3=0
telnetd_enable=0
get_pa0_index=1
log_level=0
block_java=0
forward_portsip=
ddns_service=dyndns
sel_qosport4=0
static_leasenum=0
hs_urls=
ct_modules=
ntp_server=
sel_qosport5=0
wan_hwaddr=00:1C:10:96:28:CC
sel_qosport6=0
QoS_cnt=0
NC_GatewayName=DD-WRT
pci/1/1/boardtype=0x46d
sel_qosport7=0
wd_httpport=80
wl_wds1_ospf=
lan_ifnames=eth0 eth2 eth3 eth4
sel_qosport8=0
sshd_dss_host_key=
wl_macmode1=disabled
pppoe_ifname=eth1
snmpd_enable=0
wl_40m_disable=0
wl0_auth=0
wl_radarargs_11n=5 4 3 100 0x6b0 0x6f0 0x2c40 0x7f09 6 300 1200 25 200000000 100
0 3000000
wl0_wme=on
wl0_radius_port=1812
smtp_source_network=0.0.0.0
wd_gwid=default
sshd_port=22
httpd_enable=1
wl0_radius_ipaddr=
wshaper_noprioportdst=
cron_jobs=
pppoe_service=
svqos_macs=
pci/1/1/boardflags2=0x0000
wl_country=US
ure_disable=1
wl0_wme_sta_vi=7 15 2 6016 3008 off off
wl_wds6_enable=0
pa0maxpwr=251
wl0.3_wpa_gtk_rekey=3600
schedule_weekdays=00
traceroute_ip=
ddns_change=
squid_watchdog_enable=0
pci/1/1/ofdm2gpo=0
wan_ifnames=eth1
remote_management=0
NC_ExcludePorts=25
schedule_time=3600
hs_enable=
svqos_port4bw=FULL
wl_wds5_hwaddr=
pci/1/1/ledbh0=8
wl_rateset=default
wl_crypto=tkip
wl0_wme_sta_vo=3 7 2 3264 1504 off off
block_loopback=0
nstxd_enable=0
wl0.3_crypto=off
pci/1/1/ledbh1=-1
wl_br1_netmask=255.255.255.0
wl0.2_key=1
pci/1/1/ledbh2=-1
wifi_bonding=0
svqos_svcs=
chilli_net=192.168.182.0/24
sshd_web=1
pci/1/1/ledbh3=-1
http_method=post
ppp_mru=1500
wl_wep_bit=64
hs_exempt=
wl_wds6_if=
throughput_test=0
wl_wds10_desc=
chilli_uamsecret=
chilli_uamsecret=
lan_ipaddr=192.168.0.44
clkfreq=264
os_name=linux
upnp_internet_dis=0
lan_proto=dhcp
filter_port_grp1=
wl_radius_key=
QoS=0
vlan1hwname=et0
lan1_netmask=255.255.255.0
filter_port_grp2=
wl0_maxassoc=128
pptpd_client_srvmtu=1450
portprio_support=0
filter_port_grp3=
filter_port_grp10=
ddns_passwd_2=
trigger_entries=0
clean_jffs2=0
ddns_passwd_3=
wl0.3_ssid=
filter_id=1
filter_port_grp4=
wl_unit=0
dr_wan_tx=0
wol_enable=0
wl_wds4_ipaddr=
ddns_passwd_4=
filter_port_grp5=
wl0_phytypes=n
ddns_passwd_5=
pci/1/1/mcs2gpo0=0
router_disable=0
lan1_proto=dhcp
filter_port_grp6=
wl0_wep=disabled
d11g_channel=2
wl0_frag=2346
wl_nmode_protection=auto
maskmac=1
syslogd_enable=0
ddns_passwd_6=
wl0.1_closed=0
pci/1/1/mcs2gpo1=0
filter_port_grp7=
ddns_username=
ddns_passwd_7=
pci/1/1/mcs2gpo2=0
filter_port_grp8=
pppoe_passwd=
ddns_passwd=
ddns_passwd_8=
block_ident=1
wl0_distance=2000
pci/1/1/mcs2gpo3=0
filter_port_grp9=
wl0_nbw=40
auth_dnsmasq=1
dhcpfwd_enable=0
hs_image=
pci/1/1/mcs2gpo4=0
sdram_config=0x0062
log_enable=0
ppp_ac=
sip_domain=192.168.1.1
pci/1/1/mcs2gpo5=0
wl0_country=US
filter_web_url10=
vlan1ports=0 5
pci/1/1/mcs2gpo6=0
dmz_ipaddr=0
pptpd_client_enable=0
schedule_hours=0
sshd_passwd_auth=1
rc_startup=
wl0.3_key1=
pci/1/1/mcs2gpo7=0
wl_wds=
security_mode_last=
wol_interval=86400
sshd_enable=1
wl0.1_radius_ipaddr=
wl0.3_key2=
scratch=a0180000
ddns_hostname_2=
ddns_hostname_3=
wl0.3_key3=
radiooff_boot_off=0
ddns_hostname_4=
wl0.3_key4=
trunking=0
ddns_hostname_5=
wl0.1_ssid=
pci/1/1/bwduppo=0
boot_hw_ver=1.1
wl0_rateset=default
ddns_hostname_6=
pci/1/1/txchain=3
pptpd_client_srvuser=DOMAIN\\Username
macupd_port=2056
ddns_hostname_7=
wl0.3_ipaddr=0.0.0.0
wl0_wme_apsd=off
ddns_hostname_8=
wl0_wchannel=0
wl_wds5_if=
wl_radauth=0
pppoe_idletime=15
wl_wme=on
port_flow_control_1=0
pci/1/1/antswitch=0
pci/1/1/aa2g=3
ping_times=
get_mac=00:1c:10:96:28:cb
forward_single=
port_flow_control_2=0
fullswitch=0
lan_ifname=br0
wan_primary=1
wl_wme_ap_vi=7 15 1 6016 3008 off off
remote_upgrade=0
port_flow_control_3=0
pptpd_client_nat=1
boardflags=0x0010
filter_services=$NAME:003:DNS$PROT:003:udp$PORT:005:53:53< >$NAME:004:Ping$
PROT:004:icmp$PORT:003:0:0< >$NAME:004:HTTP$PROT:003:tcp$PORT:005:80:80<&nb
sp;>$NAME:005:HTTPS$PROT:003:tcp$PORT:007:443:443< >$NAME:003:FTP$PROT:003:
tcp$PORT:005:21:21< >$NAME:004:POP3$PROT:003:tcp$PORT:007:110:110< >$N
AME:004:IMAP$PROT:003:tcp$PORT:007:143:143< >$NAME:004:SMTP$PROT:003:tcp$PO
RT:005:25:25< >$NAME:004:NNTP$PROT:003:tcp$PORT:007:119:119< >$NAME:00
6:Telnet$PROT:003:tcp$PORT:005:23:23< >$NAME:004:SNMP$PROT:003:udp$PORT:007
:161:161< >$NAME:004:TFTP$PROT:003:udp$PORT:005:69:69< >$NAME:003:IKE$
PROT:003:udp$PORT:007:500:500< >
port_flow_control_4=0
overclocking=264
hopseq=0
sdram_refresh=0x0
wl0.1_key1=
dhcp_domain=wan
port4vlans=0
wl_wds10_ospf=
wl0.1_key2=
get_pa0=82
wl_auth=0
fon_userlist=
sputnik_done=0
vlans=0
wl_wds10_ipaddr=
samba_mount=0
wl0.1_key3=
sdram_ncdl=0x10308
get_pa1=90
wl_wep_last=
wl0.1_key4=
lan1_domain=
wl_wme_ap_vo=3 7 1 3264 1504 off off
wan_gateway_buf=0.0.0.0
wl_wds1_enable=0

Probably the v1.1 has a different switch mapping.. We only have an 1.0, so you have to figure out the difference. Ytr checking if any of the lan ports do act as the WAN should.

i dont think that the wan is on the swich..

i used robocfg to see if i can figure this out...

i found the following:

with port 1 and 2 plugged in as well as wan

Switch: enabled
Port 0(W): 100FD enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 1(4): 100FD enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 2(3):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 3(2):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 4(1):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 5(C): 100FD enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
VLANs: BCM5325/535x enabled mac_check mac_hash


with only port 1 plugged in (no wan)
Switch: enabled
Port 0(W): 100FD enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 1(4):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 2(3):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 3(2):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 4(1):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 5(C): 100FD enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
VLANs: BCM5325/535x enabled mac_check mac_hash
vlan0: 0 1 2 3 4 5u


with only port 2 plugged in (no wan)

Port 0(W):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 1(4): 100FD enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 2(3):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 3(2):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 4(1):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 5(C): 100FD enabled stp: none vlan: 0 mac: 00:00:00:00:00:00

with only port 3 plugged in (no wan)
root@OpenWrt:~# robocfg show
Switch: enabled
Port 0(W):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 1(4):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 2(3): 100FD enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 3(2):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 4(1):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 5(C): 100FD enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
VLANs: BCM5325/535x enabled mac_check mac_hash
vlan0: 0 1 2 3 4 5u


with only port 4 plugged in (no wan)

Switch: enabled
Port 0(W):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 1(4):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 2(3):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 3(2): 100FD enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 4(1):  DOWN enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
Port 5(C): 100FD enabled stp: none vlan: 0 mac: 00:00:00:00:00:00
VLANs: BCM5325/535x enabled mac_check mac_hash
vlan0: 0 1 2 3 4 5u

Try to flash the factory firmware back and do a reset to factory default, and flahs openwrt after that. It's possible ddwrt screwed something up in the variables.

how do i flash firmware.

i tried applying the bin using mdt -r -e linux write somethignbin linux

but the power light just kept blinking.. had to tftp a new one on..

:-S

update: bleeding dd-wrt seems to work fine... guess its not the router after all...

thread revival...

too bad i didn't stumble upon this thread until *after* i mucked with things.

vlan config, eh... that's what i thought too... but i did horrible things during my attempt to remedy the situation.

this time ... attempt 2 ... i'm going to make sure telnet is not blocked before I go messing around with the switch programming.

i also have a v1.1 btw

(Last edited by wl520gu-hax on 4 Sep 2008, 08:51)

The discussion might have continued from here.