Quantcast
Channel: 回归江南旧梦
Viewing all articles
Browse latest Browse all 65

keepalived在Centos7上安装配置

$
0
0
[root@rhel73 ~]# yum list keepalived
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-manager
[Errno -3] Temporary failure in name resolution
Loading mirror speeds from cached hostfile
Installed Packages
keepalived.x86_64                                                                                                1.3.5-6.el7  



######################################### 打开 日志 ######################################
  
修改/etc/sysconfig/keepalived

把KEEPALIVED_OPTIONS="-D" 修改为:KEEPALIVED_OPTIONS="-D -d -S 0"


[root@lb01 /]# vim /etc/sysconfig/keepalived 
# Options for keepalived. See `keepalived --help' output and keepalived(8) and
# keepalived.conf(5) man pages for a list of all options. Here are the most
# common ones :
#
# --vrrp               -P    Only run with VRRP subsystem.
# --check              -C    Only run with Health-checker subsystem.
# --dont-release-vrrp  -V    Dont remove VRRP VIPs & VROUTEs on daemon stop.
# --dont-release-ipvs  -I    Dont remove IPVS topology on daemon stop.
# --dump-conf          -d    Dump the configuration data.
# --log-detail         -D    Detailed log messages.
# --log-facility       -S    0-7 Set local syslog facility (default=LOG_DAEMON)
#

##KEEPALIVED_OPTIONS="-D"
KEEPALIVED_OPTIONS="-D -d -S 0"


 #加一行 日志名
 
 vi /etc/rsyslog.conf   

local0.*                                                /var/log/keepalived.log


重启日志记录服务

[root@lb01 /]# /etc/init.d/rsyslog restart
Shutting down system logger:                               [  OK  ]
Starting system logger:                                    [  OK  ]
重启keepalived

[root@lb01 /]# /etc/init.d/keepalived restart


  systemctl  restart   rsyslog  
  
 

  systemctl  restart   keepalived  
  
  
 ######################################### #########################################   



### 把主备日志 分别放到

/etc/keepalived

########################################## pri 100   Master host ################################################


! Configuration File for keepalived

global_defs {
   notification_email {
     acassen@firewall.loc
     failover@firewall.loc
     sysadmin@firewall.loc
   }
   notification_email_from Alexandre.Cassen@firewall.loc
   smtp_server 192.168.1.117
   smtp_connect_timeout 30
   router_id  r1188
   
   #vrrp_skip_check_adv_addr
   vrrp_strict
   vrrp_garp_interval 0
   vrrp_gna_interval 0
}



vrrp_instance VI_1 {
    ##state MASTER
    state BACKUP
    
    interface  eno16777736
    virtual_router_id 188
    priority 100
    
    #nopreempt
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
         192.168.1.188/24    brd 192.168.1.255 
        #192.168.200.16
        #192.168.200.17
        #192.168.200.18
    }
    
   # virtual_routes {
   #     default via 192.168.1.1    # 设置默认网关
   # }


##############################################################################################




########################################## pri 88  backup host ################################################


! Configuration File for keepalived

global_defs {
   notification_email {
     acassen@firewall.loc
     failover@firewall.loc
     sysadmin@firewall.loc
   }
   notification_email_from Alexandre.Cassen@firewall.loc
   smtp_server 192.168.1.118
   smtp_connect_timeout 30
   router_id  r1188
   
   #vrrp_skip_check_adv_addr
   vrrp_strict
   vrrp_garp_interval 0
   vrrp_gna_interval 0
}



vrrp_instance VI_1 {
    ##state MASTER
    state BACKUP
    
    interface  eno16777736
    virtual_router_id 188
    priority 88
    
    #nopreempt
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
         192.168.1.188/24    brd 192.168.1.255 
        #192.168.200.16
        #192.168.200.17
        #192.168.200.18
    }
    
    #virtual_routes {
    #    default via 192.168.1.1    # 设置默认网关
    #}

}


############################################################################################



ul 30 11:51:25 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Transition to MASTER STATE
Jul 30 11:51:26 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Entering MASTER STATE
Jul 30 11:51:26 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) setting protocol iptable drop rule
Jul 30 11:51:26 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) setting protocol VIPs.
Jul 30 11:51:26 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:51:26 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Sending/queueing gratuitous ARPs on eno16777736 for 192.168.1.188
Jul 30 11:51:26 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:51:26 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:51:26 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:51:26 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:51:31 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:51:31 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Sending/queueing gratuitous ARPs on eno16777736 for 192.168.1.188
Jul 30 11:51:31 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:51:31 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:51:31 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:51:31 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
===============================================================================================================================================
Jul 30 11:53:08 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Received advert with higher priority 100, ours 88
Jul 30 11:53:08 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Entering BACKUP STATE
Jul 30 11:53:08 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) removing protocol VIPs.
Jul 30 11:53:08 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) removing protocol iptable drop rule
===============================================================================================================================================
Jul 30 11:53:49 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Transition to MASTER STATE
Jul 30 11:53:50 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Entering MASTER STATE
Jul 30 11:53:50 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) setting protocol iptable drop rule
Jul 30 11:53:50 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) setting protocol VIPs.
Jul 30 11:53:50 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:53:50 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Sending/queueing gratuitous ARPs on eno16777736 for 192.168.1.188
Jul 30 11:53:50 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:53:50 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:53:50 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:53:50 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:53:55 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:53:55 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Sending/queueing gratuitous ARPs on eno16777736 for 192.168.1.188
Jul 30 11:53:55 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:53:55 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:53:55 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:53:55 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
===============================================================================================================================================
Jul 30 11:55:24 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Received advert with higher priority 100, ours 88
Jul 30 11:55:24 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Entering BACKUP STATE
Jul 30 11:55:24 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) removing protocol VIPs.
Jul 30 11:55:24 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) removing protocol iptable drop rule
================================================================================================================================================
Jul 30 11:56:09 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Transition to MASTER STATE
Jul 30 11:56:10 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Entering MASTER STATE
Jul 30 11:56:10 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) setting protocol iptable drop rule
Jul 30 11:56:10 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) setting protocol VIPs.
Jul 30 11:56:10 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:56:10 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Sending/queueing gratuitous ARPs on eno16777736 for 192.168.1.188
Jul 30 11:56:10 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:56:10 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:56:10 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:56:10 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:56:15 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:56:15 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Sending/queueing gratuitous ARPs on eno16777736 for 192.168.1.188
Jul 30 11:56:15 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:56:15 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:56:15 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:56:15 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
===================================================================================================================================================
Jul 30 11:56:57 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Received advert with higher priority 100, ours 88
Jul 30 11:56:57 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Entering BACKUP STATE
Jul 30 11:56:57 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) removing protocol VIPs.
Jul 30 11:56:57 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) removing protocol iptable drop rule
====================================================================================================================================================
Jul 30 11:57:54 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Transition to MASTER STATE
Jul 30 11:57:55 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Entering MASTER STATE
Jul 30 11:57:55 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) setting protocol iptable drop rule
Jul 30 11:57:55 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) setting protocol VIPs.
Jul 30 11:57:55 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:57:55 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Sending/queueing gratuitous ARPs on eno16777736 for 192.168.1.188
Jul 30 11:57:55 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:57:55 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:57:55 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:57:55 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:58:01 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:58:01 rhel71 Keepalived_vrrp[6682]: VRRP_Instance(VI_1) Sending/queueing gratuitous ARPs on eno16777736 for 192.168.1.188
Jul 30 11:58:01 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:58:01 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:58:01 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
Jul 30 11:58:01 rhel71 Keepalived_vrrp[6682]: Sending gratuitous ARP on eno16777736 for 192.168.1.188
========================================================================================================================================================
^C




64 bytes from 192.168.1.188: icmp_seq=1829 ttl=64 time=9.68 ms
64 bytes from 192.168.1.188: icmp_seq=1830 ttl=64 time=2.60 ms
64 bytes from 192.168.1.188: icmp_seq=1831 ttl=64 time=9.02 ms
64 bytes from 192.168.1.188: icmp_seq=1832 ttl=64 time=9.76 ms
64 bytes from 192.168.1.188: icmp_seq=1833 ttl=64 time=4.10 ms
From 192.168.1.119: icmp_seq=1834 Redirect Host(New nexthop: 192.168.1.188)
From 192.168.1.119 icmp_seq=1834 Redirect Host64 bytes from 192.168.1.188: icmp_seq=1835 ttl=64 time=0.086 ms
64 bytes from 192.168.1.188: icmp_seq=1836 ttl=64 time=0.082 ms
64 bytes from 192.168.1.188: icmp_seq=1837 ttl=64 time=0.066 ms
64 bytes from 192.168.1.188: icmp_seq=1838 ttl=64 time=0.086 ms
64 bytes from 192.168.1.188: icmp_seq=1839 ttl=64 time=0.065 ms
64 bytes from 192.168.1.188: icmp_seq=1840 ttl=64 time=0.121 ms
64 bytes from 192.168.1.188: icmp_seq=1841 ttl=64 time=0.056 ms
64 bytes from 192.168.1.188: icmp_seq=1842 ttl=64 time=0.125 ms
64 bytes from 192.168.1.188: icmp_seq=1861 ttl=64 time=0.079 ms
64 bytes from 192.168.1.188: icmp_seq=1862 ttl=64 time=0.071 ms
64 bytes from 192.168.1.188: icmp_seq=1863 ttl=64 time=0.063 ms
64 bytes from 192.168.1.188: icmp_seq=1864 ttl=64 time=0.160 ms
64 bytes from 192.168.1.188: icmp_seq=1865 ttl=64 time=0.170 ms
64 bytes from 192.168.1.188: icmp_seq=1866 ttl=64 time=1.10 ms
64 bytes from 192.168.1.188: icmp_seq=1867 ttl=64 time=0.086 ms
64 bytes from 192.168.1.188: icmp_seq=1868 ttl=64 time=0.096 ms
64 bytes from 192.168.1.188: icmp_seq=1869 ttl=64 time=0.105 ms
64 bytes from 192.168.1.188: icmp_seq=1870 ttl=64 time=0.068 ms
64 bytes from 192.168.1.188: icmp_seq=1871 ttl=64 time=0.067 ms
64 bytes from 192.168.1.188: icmp_seq=1872 ttl=64 time=0.094 ms
64 bytes from 192.168.1.188: icmp_seq=1873 ttl=64 time=0.137 ms
From 192.168.1.119: icmp_seq=1874 Redirect Host(New nexthop: 192.168.1.188)
From 192.168.1.119 icmp_seq=1874 Redirect HostFrom 192.168.1.119: icmp_seq=1875 Redirect Host(New nexthop: 192.168.1.188)
From 192.168.1.119 icmp_seq=1875 Redirect Host64 bytes from 192.168.1.188: icmp_seq=1876 ttl=64 time=1.78 ms
64 bytes from 192.168.1.188: icmp_seq=1877 ttl=64 time=136 ms
64 bytes from 192.168.1.188: icmp_seq=1878 ttl=64 time=5.17 ms
64 bytes from 192.168.1.188: icmp_seq=1879 ttl=64 time=0.384 ms
64 bytes from 192.168.1.188: icmp_seq=1880 ttl=64 time=0.551 ms
64 bytes from 192.168.1.188: icmp_seq=1881 ttl=64 time=0.494 ms
64 bytes from 192.168.1.188: icmp_seq=1882 ttl=64 time=1.10 ms
64 bytes from 192.168.1.188: icmp_seq=1883 ttl=64 time=0.654 ms
64 bytes from 192.168.1.188: icmp_seq=1884 ttl=64 time=0.663 ms
64 bytes from 192.168.1.188: icmp_seq=1885 ttl=64 time=93.4 ms
64 bytes from 192.168.1.188: icmp_seq=1886 ttl=64 time=1.86 ms
64 bytes from 192.168.1.188: icmp_seq=1887 ttl=64 time=0.595 ms
64 bytes from 192.168.1.188: icmp_seq=1918 ttl=64 time=0.625 ms
64 bytes from 192.168.1.188: icmp_seq=1919 ttl=64 time=0.882 ms
64 bytes from 192.168.1.188: icmp_seq=1920 ttl=64 time=0.371 ms
64 bytes from 192.168.1.188: icmp_seq=1921 ttl=64 time=0.330 ms
64 bytes from 192.168.1.188: icmp_seq=1922 ttl=64 time=0.357 ms
64 bytes from 192.168.1.188: icmp_seq=1923 ttl=64 time=0.392 ms
64 bytes from 192.168.1.188: icmp_seq=1924 ttl=64 time=0.255 ms
64 bytes from 192.168.1.188: icmp_seq=1925 ttl=64 time=0.559 ms
64 bytes from 192.168.1.188: icmp_seq=1926 ttl=64 time=0.271 ms
64 bytes from 192.168.1.188: icmp_seq=1927 ttl=64 time=3.23 ms
64 bytes from 192.168.1.188: icmp_seq=1928 ttl=64 time=1.96 ms
64 bytes from 192.168.1.188: icmp_seq=1949 ttl=64 time=6.42 ms
64 bytes from 192.168.1.188: icmp_seq=1950 ttl=64 time=2.31 ms
64 bytes from 192.168.1.188: icmp_seq=1951 ttl=64 time=15.4 ms
64 bytes from 192.168.1.188: icmp_seq=1952 ttl=64 time=1.94 ms
64 bytes from 192.168.1.188: icmp_seq=1953 ttl=64 time=10.4 ms
64 bytes from 192.168.1.188: icmp_seq=1954 ttl=64 time=0.700 ms
64 bytes from 192.168.1.188: icmp_seq=1955 ttl=64 time=8.01 ms
64 bytes from 192.168.1.188: icmp_seq=1956 ttl=64 time=0.427 ms
64 bytes from 192.168.1.188: icmp_seq=1957 ttl=64 time=0.810 ms
64 bytes from 192.168.1.188: icmp_seq=1958 ttl=64 time=3.44 ms
64 bytes from 192.168.1.188: icmp_seq=1959 ttl=64 time=5.12 ms
64 bytes from 192.168.1.188: icmp_seq=1960 ttl=64 time=2.05 ms
64 bytes from 192.168.1.188: icmp_seq=1961 ttl=64 time=0.475 ms
64 bytes from 192.168.1.188: icmp_seq=1962 ttl=64 time=7.43 ms
64 bytes from 192.168.1.188: icmp_seq=1963 ttl=64 time=20.4 ms
64 bytes from 192.168.1.188: icmp_seq=1964 ttl=64 time=0.627 ms
64 bytes from 192.168.1.188: icmp_seq=1965 ttl=64 time=3.79 ms
64 bytes from 192.168.1.188: icmp_seq=1966 ttl=64 time=4.66 ms
64 bytes from 192.168.1.188: icmp_seq=1967 ttl=64 time=2.91 ms
From 192.168.1.119: icmp_seq=1968 Redirect Host(New nexthop: 192.168.1.188)
From 192.168.1.119 icmp_seq=1968 Redirect Host64 bytes from 192.168.1.188: icmp_seq=1969 ttl=64 time=0.082 ms
64 bytes from 192.168.1.188: icmp_seq=1970 ttl=64 time=0.127 ms
64 bytes from 192.168.1.188: icmp_seq=1971 ttl=64 time=0.131 ms
64 bytes from 192.168.1.188: icmp_seq=1972 ttl=64 time=0.200 ms
64 bytes from 192.168.1.188: icmp_seq=1973 ttl=64 time=0.076 ms
64 bytes from 192.168.1.188: icmp_seq=1974 ttl=64 time=0.233 ms
64 bytes from 192.168.1.188: icmp_seq=1975 ttl=64 time=0.070 ms
64 bytes from 192.168.1.188: icmp_seq=1976 ttl=64 time=0.126 ms
64 bytes from 192.168.1.188: icmp_seq=1993 ttl=64 time=0.113 ms
64 bytes from 192.168.1.188: icmp_seq=1994 ttl=64 time=0.088 ms
64 bytes from 192.168.1.188: icmp_seq=1995 ttl=64 time=0.076 ms
64 bytes from 192.168.1.188: icmp_seq=1996 ttl=64 time=0.052 ms
64 bytes from 192.168.1.188: icmp_seq=1997 ttl=64 time=0.181 ms
64 bytes from 192.168.1.188: icmp_seq=1998 ttl=64 time=0.064 ms
64 bytes from 192.168.1.188: icmp_seq=1999 ttl=64 time=0.081 ms
64 bytes from 192.168.1.188: icmp_seq=2000 ttl=64 time=0.058 ms
64 bytes from 192.168.1.188: icmp_seq=2001 ttl=64 time=0.044 ms
64 bytes from 192.168.1.188: icmp_seq=2002 ttl=64 time=0.043 ms
64 bytes from 192.168.1.188: icmp_seq=2003 ttl=64 time=0.269 ms
64 bytes from 192.168.1.188: icmp_seq=2004 ttl=64 time=1.44 ms
64 bytes from 192.168.1.188: icmp_seq=2005 ttl=64 time=0.049 ms
64 bytes from 192.168.1.188: icmp_seq=2006 ttl=64 time=0.064 ms
64 bytes from 192.168.1.188: icmp_seq=2007 ttl=64 time=0.140 ms
64 bytes from 192.168.1.188: icmp_seq=2008 ttl=64 time=0.091 ms
64 bytes from 192.168.1.188: icmp_seq=2009 ttl=64 time=0.081 ms
64 bytes from 192.168.1.188: icmp_seq=2010 ttl=64 time=0.083 ms
64 bytes from 192.168.1.188: icmp_seq=2011 ttl=64 time=0.064 ms
From 192.168.1.119: icmp_seq=2012 Redirect Host(New nexthop: 192.168.1.188)
From 192.168.1.119 icmp_seq=2012 Redirect Host64 bytes from 192.168.1.188: icmp_seq=2013 ttl=64 time=1.13 ms
64 bytes from 192.168.1.188: icmp_seq=2014 ttl=64 time=2.71 ms
64 bytes from 192.168.1.188: icmp_seq=2015 ttl=64 time=0.937 ms
64 bytes from 192.168.1.188: icmp_seq=2016 ttl=64 time=1.16 ms
64 bytes from 192.168.1.188: icmp_seq=2017 ttl=64 time=0.544 ms
64 bytes from 192.168.1.188: icmp_seq=2018 ttl=64 time=10.1 ms
64 bytes from 192.168.1.188: icmp_seq=2019 ttl=64 time=74.0 ms
64 bytes from 192.168.1.188: icmp_seq=2020 ttl=64 time=0.379 ms
64 bytes from 192.168.1.188: icmp_seq=2021 ttl=64 time=0.335 ms
64 bytes from 192.168.1.188: icmp_seq=2022 ttl=64 time=2.19 ms
64 bytes from 192.168.1.188: icmp_seq=2036 ttl=64 time=3.24 ms
64 bytes from 192.168.1.188: icmp_seq=2037 ttl=64 time=31.1 ms
64 bytes from 192.168.1.188: icmp_seq=2038 ttl=64 time=0.711 ms
64 bytes from 192.168.1.188: icmp_seq=2039 ttl=64 time=0.381 ms
64 bytes from 192.168.1.188: icmp_seq=2040 ttl=64 time=0.530 ms
64 bytes from 192.168.1.188: icmp_seq=2041 ttl=64 time=0.784 ms
64 bytes from 192.168.1.188: icmp_seq=2042 ttl=64 time=11.4 ms
64 bytes from 192.168.1.188: icmp_seq=2043 ttl=64 time=5.64 ms
64 bytes from 192.168.1.188: icmp_seq=2044 ttl=64 time=82.0 ms
64 bytes from 192.168.1.188: icmp_seq=2045 ttl=64 time=1.40 ms
64 bytes from 192.168.1.188: icmp_seq=2046 ttl=64 time=2.69 ms
64 bytes from 192.168.1.188: icmp_seq=2047 ttl=64 time=0.709 ms
64 bytes from 192.168.1.188: icmp_seq=2048 ttl=64 time=0.418 ms
64 bytes from 192.168.1.188: icmp_seq=2049 ttl=64 time=7.52 ms
64 bytes from 192.168.1.188: icmp_seq=2050 ttl=64 time=2.33 ms
64 bytes from 192.168.1.188: icmp_seq=2051 ttl=64 time=2.21 ms
64 bytes from 192.168.1.188: icmp_seq=2052 ttl=64 time=1.09 ms
64 bytes from 192.168.1.188: icmp_seq=2053 ttl=64 time=19.6 ms
64 bytes from 192.168.1.188: icmp_seq=2054 ttl=64 time=4.23 ms
64 bytes from 192.168.1.188: icmp_seq=2055 ttl=64 time=2.93 ms
64 bytes from 192.168.1.188: icmp_seq=2056 ttl=64 time=0.622 ms
64 bytes from 192.168.1.188: icmp_seq=2057 ttl=64 time=0.322 ms
64 bytes from 192.168.1.188: icmp_seq=2058 ttl=64 time=0.341 ms
64 bytes from 192.168.1.188: icmp_seq=2059 ttl=64 time=1.41 ms
From 192.168.1.119: icmp_seq=2060 Redirect Host(New nexthop: 192.168.1.188)
From 192.168.1.119 icmp_seq=2060 Redirect Host64 bytes from 192.168.1.188: icmp_seq=2061 ttl=64 time=0.113 ms
64 bytes from 192.168.1.188: icmp_seq=2062 ttl=64 time=0.078 ms
64 bytes from 192.168.1.188: icmp_seq=2063 ttl=64 time=0.085 ms
64 bytes from 192.168.1.188: icmp_seq=2064 ttl=64 time=0.089 ms
64 bytes from 192.168.1.188: icmp_seq=2065 ttl=64 time=0.080 ms
64 bytes from 192.168.1.188: icmp_seq=2066 ttl=64 time=0.081 ms
64 bytes from 192.168.1.188: icmp_seq=2067 ttl=64 time=0.145 ms
64 bytes from 192.168.1.188: icmp_seq=2068 ttl=64 time=0.233 ms
64 bytes from 192.168.1.188: icmp_seq=2069 ttl=64 time=0.115 ms
64 bytes from 192.168.1.188: icmp_seq=2070 ttl=64 time=0.120 ms
64 bytes from 192.168.1.188: icmp_seq=2071 ttl=64 time=0.060 ms
64 bytes from 192.168.1.188: icmp_seq=2072 ttl=64 time=0.092 ms
64 bytes from 192.168.1.188: icmp_seq=2073 ttl=64 time=0.080 ms
64 bytes from 192.168.1.188: icmp_seq=2074 ttl=64 time=0.085 ms
64 bytes from 192.168.1.188: icmp_seq=2075 ttl=64 time=0.068 ms
64 bytes from 192.168.1.188: icmp_seq=2095 ttl=64 time=0.082 ms
64 bytes from 192.168.1.188: icmp_seq=2096 ttl=64 time=0.131 ms
64 bytes from 192.168.1.188: icmp_seq=2097 ttl=64 time=0.082 ms
64 bytes from 192.168.1.188: icmp_seq=2098 ttl=64 time=0.108 ms
64 bytes from 192.168.1.188: icmp_seq=2099 ttl=64 time=0.061 ms
64 bytes from 192.168.1.188: icmp_seq=2100 ttl=64 time=0.049 ms
64 bytes from 192.168.1.188: icmp_seq=2101 ttl=64 time=0.050 ms
64 bytes from 192.168.1.188: icmp_seq=2102 ttl=64 time=0.033 ms
64 bytes from 192.168.1.188: icmp_seq=2103 ttl=64 time=0.055 ms
64 bytes from 192.168.1.188: icmp_seq=2104 ttl=64 time=0.028 ms
64 bytes from 192.168.1.188: icmp_seq=2105 ttl=64 time=0.052 ms
64 bytes from 192.168.1.188: icmp_seq=2106 ttl=64 time=0.108 ms
64 bytes from 192.168.1.188: icmp_seq=2107 ttl=64 time=0.087 ms
64 bytes from 192.168.1.188: icmp_seq=2108 ttl=64 time=0.077 ms
64 bytes from 192.168.1.188: icmp_seq=2109 ttl=64 time=0.044 ms
64 bytes from 192.168.1.188: icmp_seq=2110 ttl=64 time=0.081 ms
64 bytes from 192.168.1.188: icmp_seq=2111 ttl=64 time=0.077 ms
64 bytes from 192.168.1.188: icmp_seq=2112 ttl=64 time=0.118 ms
64 bytes from 192.168.1.188: icmp_seq=2113 ttl=64 time=0.119 ms
64 bytes from 192.168.1.188: icmp_seq=2114 ttl=64 time=0.266 ms
64 bytes from 192.168.1.188: icmp_seq=2115 ttl=64 time=0.170 ms
From 192.168.1.119: icmp_seq=2116 Redirect Host(New nexthop: 192.168.1.188)
From 192.168.1.119 icmp_seq=2116 Redirect HostFrom 192.168.1.119: icmp_seq=2117 Redirect Host(New nexthop: 192.168.1.188)
From 192.168.1.119 icmp_seq=2117 Redirect Host64 bytes from 192.168.1.188: icmp_seq=2118 ttl=64 time=24.3 ms
64 bytes from 192.168.1.188: icmp_seq=2119 ttl=64 time=0.689 ms
64 bytes from 192.168.1.188: icmp_seq=2120 ttl=64 time=0.273 ms
64 bytes from 192.168.1.188: icmp_seq=2121 ttl=64 time=13.0 ms
64 bytes from 192.168.1.188: icmp_seq=2122 ttl=64 time=44.2 ms
64 bytes from 192.168.1.188: icmp_seq=2123 ttl=64 time=1.38 ms
64 bytes from 192.168.1.188: icmp_seq=2124 ttl=64 time=0.386 ms
64 bytes from 192.168.1.188: icmp_seq=2125 ttl=64 time=0.318 ms
64 bytes from 192.168.1.188: icmp_seq=2126 ttl=64 time=1.48 ms
64 bytes from 192.168.1.188: icmp_seq=2127 ttl=64 time=4.54 ms
64 bytes from 192.168.1.188: icmp_seq=2128 ttl=64 time=6.16 ms
64 bytes from 192.168.1.188: icmp_seq=2129 ttl=64 time=0.414 ms
64 bytes from 192.168.1.188: icmp_seq=2130 ttl=64 time=17.0 ms
64 bytes from 192.168.1.188: icmp_seq=2131 ttl=64 time=0.471 ms
64 bytes from 192.168.1.188: icmp_seq=2132 ttl=64 time=6.30 ms
64 bytes from 192.168.1.188: icmp_seq=2133 ttl=64 time=0.990 ms
64 bytes from 192.168.1.188: icmp_seq=2134 ttl=64 time=4.41 ms
64 bytes from 192.168.1.188: icmp_seq=2135 ttl=64 time=8.58 ms
64 bytes from 192.168.1.188: icmp_seq=2136 ttl=64 time=0.913 ms
64 bytes from 192.168.1.188: icmp_seq=2137 ttl=64 time=6.68 ms
64 bytes from 192.168.1.188: icmp_seq=2138 ttl=64 time=0.562 ms
64 bytes from 192.168.1.188: icmp_seq=2139 ttl=64 time=253 ms
64 bytes from 192.168.1.188: icmp_seq=2140 ttl=64 time=0.414 ms
64 bytes from 192.168.1.188: icmp_seq=2141 ttl=64 time=2.38 ms
^C
--- 192.168.1.188 ping statistics ---

 

Viewing all articles
Browse latest Browse all 65

Trending Articles