Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.22 KB | None | 0 0
  1.  
  2. BusyBox v1.26.2 () built-in shell (ash)
  3.  
  4. _________
  5. / /\ _ ___ ___ ___
  6. / LE / \ | | | __| \| __|
  7. / DE / \ | |__| _|| |) | _|
  8. /________/ LE \ |____|___|___/|___| lede-project.org
  9. \ \ DE /
  10. \ LE \ / -----------------------------------------------------------
  11. \ DE \ / Reboot (SNAPSHOT, r4496-24043a0)
  12. \________\/ -----------------------------------------------------------
  13.  
  14. === WARNING! =====================================
  15. There is no root password defined on this device!
  16. Use the "passwd" command to set up a new password
  17. in order to prevent unauthorized SSH logins.
  18. --------------------------------------------------
  19. root@LEDE:/# ifconfig
  20. br-lan Link encap:Ethernet HWaddr 00:50:18:67:D4:0E
  21. inet addr:192.168.1.1 Bcast:192.168.1.255 Mask:255.255.255.0
  22. inet6 addr: fd49:7ca2:6056::1/60 Scope:Global
  23. inet6 addr: fe80::250:18ff:fe67:d40e/64 Scope:Link
  24. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  25. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  26. TX packets:14 errors:0 dropped:0 overruns:0 carrier:0
  27. collisions:0 txqueuelen:1000
  28. RX bytes:0 (0.0 B) TX bytes:2028 (1.9 KiB)
  29.  
  30. eth0 Link encap:Ethernet HWaddr 00:50:18:67:D4:0E
  31. inet6 addr: fe80::250:18ff:fe67:d40e/64 Scope:Link
  32. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  33. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  34. TX packets:58 errors:0 dropped:0 overruns:0 carrier:0
  35. collisions:0 txqueuelen:1000
  36. RX bytes:0 (0.0 B) TX bytes:12945 (12.6 KiB)
  37. Interrupt:5
  38.  
  39. eth0.1 Link encap:Ethernet HWaddr 00:50:18:67:D4:0E
  40. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  41. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  42. TX packets:14 errors:0 dropped:0 overruns:0 carrier:0
  43. collisions:0 txqueuelen:1000
  44. RX bytes:0 (0.0 B) TX bytes:2028 (1.9 KiB)
  45.  
  46. eth0.2 Link encap:Ethernet HWaddr 00:50:18:67:D4:0F
  47. inet6 addr: fe80::250:18ff:fe67:d40f/64 Scope:Link
  48. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  49. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  50. TX packets:30 errors:0 dropped:0 overruns:0 carrier:0
  51. collisions:0 txqueuelen:1000
  52. RX bytes:0 (0.0 B) TX bytes:8372 (8.1 KiB)
  53.  
  54. lo Link encap:Local Loopback
  55. inet addr:127.0.0.1 Mask:255.0.0.0
  56. inet6 addr: ::1/128 Scope:Host
  57. UP LOOPBACK RUNNING MTU:65536 Metric:1
  58. RX packets:56 errors:0 dropped:0 overruns:0 frame:0
  59. TX packets:56 errors:0 dropped:0 overruns:0 carrier:0
  60. collisions:0 txqueuelen:1
  61. RX bytes:3752 (3.6 KiB) TX bytes:3752 (3.6 KiB)
  62.  
  63. root@LEDE:/# swconfig list
  64. Found: switch0 - mdio-bus
  65. Found: switch1 - mt7620
  66. root@LEDE:/# cat /etc/config/network
  67.  
  68. config interface 'loopback'
  69. option ifname 'lo'
  70. option proto 'static'
  71. option ipaddr '127.0.0.1'
  72. option netmask '255.0.0.0'
  73.  
  74. config globals 'globals'
  75. option ula_prefix 'fd49:7ca2:6056::/48'
  76.  
  77. config interface 'lan'
  78. option type 'bridge'
  79. option ifname 'eth0.1'
  80. option proto 'static'
  81. option ipaddr '192.168.1.1'
  82. option netmask '255.255.255.0'
  83. option ip6assign '60'
  84.  
  85. config device 'lan_dev'
  86. option name 'eth0.1'
  87. option macaddr '00:50:18:67:d4:0e'
  88.  
  89. config interface 'wan'
  90. option ifname 'eth0.2'
  91. option proto 'dhcp'
  92.  
  93. config device 'wan_dev'
  94. option name 'eth0.2'
  95. option macaddr '00:50:18:67:d4:0f'
  96.  
  97. config interface 'wan6'
  98. option ifname 'eth0.2'
  99. option proto 'dhcpv6'
  100.  
  101. root@LEDE:/# cat /etc/config/wireless
  102.  
  103. config wifi-device 'radio0'
  104. option type 'mac80211'
  105. option channel '11'
  106. option hwmode '11g'
  107. option path 'platform/10180000.wmac'
  108. option htmode 'HT20'
  109. option disabled '1'
  110.  
  111. config wifi-iface 'default_radio0'
  112. option device 'radio0'
  113. option network 'lan'
  114. option mode 'ap'
  115. option ssid 'LEDE'
  116. option encryption 'none'
  117.  
  118. root@LEDE:/#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement