Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. 16:31:29.540951 IP 10.0.1.4 > 10.0.2.5: ICMP echo request, id 7301, seq 14, length 64
  2. 16:31:29.541297 IP 10.0.2.5 > 10.0.1.4: ICMP echo reply, id 7301, seq 14, length 64
  3. 16:31:30.540303 IP 10.0.1.4 > 10.0.2.5: ICMP echo request, id 7301, seq 15, length 64
  4. 16:31:30.540536 IP 10.0.2.5 > 10.0.1.4: ICMP echo reply, id 7301, seq 15, length 64
  5. 16:31:31.541623 IP 10.0.1.4 > 10.0.2.5: ICMP echo request, id 7301, seq 16, length 64
  6. 16:31:31.542315 IP 10.0.2.5 > 10.0.1.4: ICMP echo reply, id 7301, seq 16, length 64
  7.  
  8. 16:38:13.230972 IP 10.0.1.4 > 10.0.2.7: ICMP echo request, id 7302, seq 5, length 64
  9. 16:38:14.230283 IP 10.0.1.4 > 10.0.2.7: ICMP echo request, id 7302, seq 6, length 64
  10. 16:38:15.232537 IP 10.0.1.4 > 10.0.2.7: ICMP echo request, id 7302, seq 7, length 64
  11. 16:38:16.241314 IP 10.0.1.4 > 10.0.2.7: ICMP echo request, id 7302, seq 8, length 64
  12.  
  13. vyatta@R2:~$ show ip route
  14.  
  15. Codes: K - kernel route, C - connected, S - static, R - RIP, O - OSPF,
  16. I - ISIS, B - BGP, > - selected route, * - FIB route
  17.  
  18. O 10.0.1.0/24 [110/10] is directly connected, eth0, 01:39:14
  19. C>* 10.0.1.0/24 is directly connected, eth0
  20. O 10.0.1.4/32 [110/20] via 10.0.1.4 inactive, 00:51:29
  21. O 10.0.2.0/24 [110/10] is directly connected, eth1, 01:39:08
  22. C>* 10.0.2.0/24 is directly connected, eth1
  23. C>* 127.0.0.0/8 is directly connected, lo
  24.  
  25. vyatta@R2:~$ show configuration
  26. interfaces {
  27. ethernet eth0 {
  28. address 10.0.1.6/24
  29. hw-id 00:0c:29:9f:5f:22
  30. }
  31. ethernet eth1 {
  32. address 10.0.2.5/24
  33. hw-id 00:0c:29:9f:5f:23
  34. }
  35. loopback lo {
  36. }
  37. }
  38. protocols {
  39. ospf {
  40. area 0.0.0.0 {
  41. network 10.0.1.0/24
  42. network 10.0.2.0/24
  43. }
  44. }
  45. }
  46. service {
  47. ssh {
  48. }
  49. }
  50. system {
  51. config-management {
  52. commit-revisions 20
  53. }
  54. console {
  55. device ttyS0 {
  56. speed 9600
  57. }
  58. }
  59. host-name R2
  60. login {
  61. user vyatta {
  62. authentication {
  63. encrypted-password ****************
  64. }
  65. level admin
  66. }
  67. }
  68. ntp {
  69. server 0.vyatta.pool.ntp.org {
  70. }
  71. server 1.vyatta.pool.ntp.org {
  72. }
  73. server 2.vyatta.pool.ntp.org {
  74. }
  75. }
  76. package {
  77. repository community {
  78. components main
  79. distribution stable
  80. url http://packages.vyatta.com/vyatta
  81. }
  82. }
  83. syslog {
  84. global {
  85. facility all {
  86. level notice
  87. }
  88. facility protocols {
  89. level debug
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement