Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. mint@mint ~ $ sudo cat /var/log/syslog | grep pppd
  2. Apr 28 15:11:06 localhost pppd[4063]: Plugin rp-pppoe.so loaded.
  3. Apr 28 15:11:06 localhost pppd[4064]: pppd 2.4.6 started by root, uid 0
  4. Apr 28 15:11:06 localhost pppd[4064]: PPP session is 4219
  5. Apr 28 15:11:06 localhost pppd[4064]: Connected to 00:25:90:e0:7e:ca via interface eth0
  6. Apr 28 15:11:06 localhost pppd[4064]: Using interface ppp0
  7. Apr 28 15:11:06 localhost pppd[4064]: Connect: ppp0 <--> eth0
  8. Apr 28 15:11:09 localhost pppd[4064]: PAP authentication succeeded
  9. Apr 28 15:11:09 localhost pppd[4064]: peer from calling number 00:25:90:E0:7E:CA authorized
  10. Apr 28 15:11:09 localhost pppd[4064]: local IP address 79.119.208.88
  11. Apr 28 15:11:09 localhost pppd[4064]: remote IP address 10.0.0.1
  12. Apr 28 15:11:09 localhost pppd[4064]: primary DNS address 193.231.252.1
  13. Apr 28 15:11:09 localhost pppd[4064]: secondary DNS address 213.154.124.1
  14. mint@mint ~ $ ifconfig
  15. eth0 Link encap:Ethernet HWaddr 6c:f0:49:e0:73:a3
  16. inet6 addr: fe80::6ef0:49ff:fee0:73a3/64 Scope:Link
  17. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  18. RX packets:15745 errors:0 dropped:1 overruns:0 frame:0
  19. TX packets:11222 errors:0 dropped:0 overruns:0 carrier:1
  20. collisions:0 txqueuelen:1000
  21. RX bytes:14658271 (13.9 MiB) TX bytes:1650903 (1.5 MiB)
  22.  
  23. lo Link encap:Local Loopback
  24. inet addr:127.0.0.1 Mask:255.0.0.0
  25. inet6 addr: ::1/128 Scope:Host
  26. UP LOOPBACK RUNNING MTU:65536 Metric:1
  27. RX packets:64 errors:0 dropped:0 overruns:0 frame:0
  28. TX packets:64 errors:0 dropped:0 overruns:0 carrier:0
  29. collisions:0 txqueuelen:0
  30. RX bytes:5184 (5.0 KiB) TX bytes:5184 (5.0 KiB)
  31.  
  32. ppp0 Link encap:Point-to-Point Protocol
  33. inet addr:79.119.208.88 P-t-P:10.0.0.1 Mask:255.255.255.255
  34. UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1492 Metric:1
  35. RX packets:15173 errors:0 dropped:0 overruns:0 frame:0
  36. TX packets:11070 errors:0 dropped:0 overruns:0 carrier:0
  37. collisions:0 txqueuelen:3
  38. RX bytes:14185342 (13.5 MiB) TX bytes:1383922 (1.3 MiB)
  39.  
  40. mint@mint ~ $ iwconfig
  41. ppp0 no wireless extensions.
  42.  
  43. lo no wireless extensions.
  44.  
  45. eth0 no wireless extensions.
  46.  
  47. mint@mint ~ $ cat /etc/hosts
  48. 127.0.0.1 localhost mint
  49. ::1 localhost ip6-localhost ip6-loopback
  50. fe00::0 ip6-localnet
  51. ff00::0 ip6-mcastprefix
  52. ff02::1 ip6-allnodes
  53. ff02::2 ip6-allrouters
  54. mint@mint ~ $ cat /etc/resolv.conf
  55. # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
  56. # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
  57. nameserver 193.231.252.1
  58. nameserver 213.154.124.1
  59. mint@mint ~ $ cat /etc/network/interfaces
  60. auto lo
  61. iface lo inet loopback
  62.  
  63.  
  64. auto dsl-provider
  65. iface dsl-provider inet ppp
  66. pre-up /bin/ip link set eth0 up # line maintained by pppoeconf
  67. provider dsl-provider
  68.  
  69. auto eth0
  70. iface eth0 inet manual
  71. mint@mint ~ $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement