Jump to content

BrianAz

Members
  • Posts

    12
  • Joined

  • Last visited

Everything posted by BrianAz

  1. BrianAz

    Agent dies

    Here is the output from ldd. user@SB:~$ sudo ldd /usr/sbin/pcmonitord linux-vdso.so.1 => (0x00007ffff41ff000) libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007fc045994000) librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007fc04578c000) libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007fc045587000) libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007fc045370000) libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007fc045070000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fc044d73000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fc0449b3000) libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007fc04479d000) /lib64/ld-linux-x86-64.so.2 (0x00007fc045bbb000) I am attempting to start the agent, but it's not working: user@SB:~$ sudo /etc/init.d/pcmonitor status * pcmonitor is not running user@SB:~$ sudo /etc/init.d/pcmonitor start user@SB:~$ sudo /etc/init.d/pcmonitor status * pcmonitor is not running user@SB:~$ ls -la /var/pcmonitor/ total 16 drwxr-xr-x 2 root root 4096 Jan 9 22:39 . drwxr-xr-x 15 root root 4096 Jan 27 12:22 .. -rw-r--r-- 1 root root 68 Jan 9 22:39 pcmonitor.id -rw-rw-rw- 1 root root 10 Jan 9 22:39 pcmonitor.ver2 user@SB:~$ sudo /etc/init.d/pcmonitor status * pcmonitor is not running user@SB:~$ sudo /etc/init.d/pcmonitor start user@SB:~$ sudo /etc/init.d/pcmonitor status * pcmonitor is not running user@SB:~$ sudo tail /var/log/syslog Jan 30 16:46:01 SB CRON[3469]: (root) CMD (/usr/local/rtm/bin/rtm 11 > /dev/null 2> /dev/null) Jan 30 16:47:01 SB CRON[3520]: (root) CMD (/usr/local/rtm/bin/rtm 11 > /dev/null 2> /dev/null) Jan 30 16:48:01 SB CRON[3572]: (root) CMD (/usr/local/rtm/bin/rtm 11 > /dev/null 2> /dev/null) Jan 30 16:49:01 SB CRON[3961]: (root) CMD (/usr/local/rtm/bin/rtm 11 > /dev/null 2> /dev/null) Jan 30 16:50:01 SB CRON[4021]: (root) CMD (/usr/local/rtm/bin/rtm 11 > /dev/null 2> /dev/null) Jan 30 16:50:38 SB pcmonitor: *** glibc detected *** /usr/sbin/pcmonitord: double free or corruption (fasttop): 0x00007f6fd0029480 *** Jan 30 16:51:01 SB CRON[4111]: (root) CMD (/usr/local/rtm/bin/rtm 11 > /dev/null 2> /dev/null) Jan 30 16:51:30 SB pcmonitor: Error while registering computer:Empty response Jan 30 16:51:33 SB pcmonitor: *** glibc detected *** /usr/sbin/pcmonitord: double free or corruption (fasttop): 0x0000000000e878d0 *** Jan 30 16:52:01 SB CRON[4225]: (root) CMD (/usr/local/rtm/bin/rtm 11 > /dev/null 2> /dev/null) user@SB:~$ sudo /etc/init.d/pcmonitor status * pcmonitor is not running So I started it manually with valgrind... and it works: user@SB:~$ sudo valgrind /usr/sbin/pcmonitord -v > /dev/null & user@SB:~$ ps aux | grep pcmonitor root 4682 4.1 0.7 176448 61964 ? Ssl 16:58 0:03 /usr/bin/valgrind.bin /usr/sbin/pcmonitord -v For your second question re: ulimit and core files. I did not find any core files and interestingly, once I set it to unlimited, pcmonitor started via the script.. if it crashes, I'll look for the core file again. user@SB:~$ ps aux | grep pcmonitor 1000 5250 0.0 0.0 8592 932 pts/1 S+ 17:03 0:00 grep --color=auto pcmonitor user@SB:~$ sudo ulimit -c unlimited sudo: ulimit: command not found user@SB:~$ ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimited pending signals (-i) 62941 max locked memory (kbytes, -l) 64 max memory size (kbytes, -m) unlimited open files (-n) 1024 pipe size (512 bytes, -p) 8 POSIX message queues (bytes, -q) 819200 real-time priority (-r) 0 stack size (kbytes, -s) 8192 cpu time (seconds, -t) unlimited max user processes (-u) 62941 virtual memory (kbytes, -v) unlimited file locks (-x) unlimited user@SB:~$ ulimit -c unlimited user@SB:~$ ulimit -a core file size (blocks, -c) unlimited data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimited pending signals (-i) 62941 max locked memory (kbytes, -l) 64 max memory size (kbytes, -m) unlimited open files (-n) 1024 pipe size (512 bytes, -p) 8 POSIX message queues (bytes, -q) 819200 real-time priority (-r) 0 stack size (kbytes, -s) 8192 cpu time (seconds, -t) unlimited max user processes (-u) 62941 virtual memory (kbytes, -v) unlimited file locks (-x) unlimited user@SB:~$ sudo /etc/init.d/pcmonitor status * pcmonitor is not running user@SB:~$ sudo /etc/init.d/pcmonitor start user@SB:~$ ls -la /var/pcmonitor/ total 16 drwxr-xr-x 2 root root 4096 Jan 9 22:39 . drwxr-xr-x 15 root root 4096 Jan 27 12:22 .. -rw-r--r-- 1 root root 68 Jan 9 22:39 pcmonitor.id -rw-rw-rw- 1 root root 10 Jan 9 22:39 pcmonitor.ver2 user@SB:~$ sudo /etc/init.d/pcmonitor status * pcmonitor is running user@SB:~$ Thanks, appreciate the help!
  2. Thank you very much for adding network monitoring to the linux agent, I love being able to see status for all my machines regardless of OS! I did see one item that I wanted to report as a potential bug though. When you click on Network (iPhone app) for a Linux machine, the network Receiving and Sending is displayed as Kb/s (kilobits per second) but when you click on the interface, the graph reports (correctly I believe) as KB/s (kilobytes per second). Please see attached screenshots. My OSX and Windows servers report/display the information properly, it is only my Linux machines with the new agent where I am seeing this. Thanks, Brian
  3. BrianAz

    Agent dies

    I was watching my iPhone and noticed the server go grey on the PCMonitor app. Upon investigating I noticed I could still connect to it via ssh/VNC w/o issue so I ran "/etc/init.d/pcmonitor status" and it told me the agent was running. I let everything sit and roughly 5-10 min later the server had not come back online (per pcmonitor), I ran status again and the agent was no longer running. I have no other evidence of connection issues around the same time, so I think the agent was crashing. I then installed valgrind and ran the agent through it as mentioned in the similar thread in the Bugs forum and it's been up and running great ever since.
  4. BrianAz

    Agent dies

    The agent on one of my ESXI 5.1 Ubuntu VMs died a couple times today. My leased server is still going strong since I started it with valgrind though. Going to try that on my server below now. Thanks for looking into the issue. Config is identical to server in post above (see attachment). brian@PlexMediaServer:~$ uname -a Linux PlexMediaServer 3.2.0-58-generic #88-Ubuntu SMP Tue Dec 3 17:37:58 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux cat /var/log/syslog.1 | grep pcmonitor Jan 14 13:20:33 PlexMediaServer pcmonitor: Error while registering online:SOAP 1.1 fault: SOAP-ENV:Client[no subcode]#012"Error observed by underlying SSL/TLS BIO: Connection reset by peer"#012Detail: SSL_connect error in tcp_connect() Jan 14 13:21:56 PlexMediaServer pcmonitor: Error while registering computer:SOAP 1.1 fault: SOAP-ENV:Client[no subcode]#012""#012Detail: connect failed in tcp_connect() Jan 14 13:22:59 PlexMediaServer pcmonitor: Error while registering computer:SOAP 1.1 fault: SOAP-ENV:Client[no subcode]#012""#012Detail: connect failed in tcp_connect() Jan 14 13:23:06 PlexMediaServer pcmonitor: Error while registering computer:SOAP 1.1 fault: SOAP-ENV:Client[no subcode]#012""#012Detail: connect failed in tcp_connect() Jan 14 13:24:23 PlexMediaServer pcmonitor: Error while registering computer:Empty response Jan 14 13:24:23 PlexMediaServer pcmonitor: Error while registering computer:Error 503 fault: SOAP-ENV:Server[no subcode]#012"HTTP/1.1 503 Service Unavailable"#012Detail: The service is unavailable. Jan 14 13:24:45 PlexMediaServer pcmonitor: Error while registering computer:Error 503 fault: SOAP-ENV:Server[no subcode]#012"HTTP/1.1 503 Service Unavailable"#012Detail: The service is unavailable. Jan 14 22:59:58 PlexMediaServer pcmonitor: Error while registering online:Error 503 fault: SOAP-ENV:Server[no subcode]#012"HTTP/1.1 503 Service Unavailable"#012Detail: The service is unavailable. Jan 14 23:00:18 PlexMediaServer pcmonitor: Error while registering computer:Error 503 fault: SOAP-ENV:Server[no subcode]#012"HTTP/1.1 503 Service Unavailable"#012Detail: The service is unavailable. Jan 14 23:00:36 PlexMediaServer pcmonitor: Error while registering computer:Empty response Jan 14 23:00:52 PlexMediaServer pcmonitor: Error while registering computer:Error 503 fault: SOAP-ENV:Server[no subcode]#012"HTTP/1.1 503 Service Unavailable"#012Detail: The service is unavailable. Jan 15 03:14:57 PlexMediaServer pcmonitor: Error while registering online:Error 503 fault: SOAP-ENV:Server[no subcode]#012"HTTP/1.1 503 Service Unavailable"#012Detail: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">#015#012<HTML><HEAD><TITLE>Service Unavailable</TITLE>#015#012<META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii"></HEAD>#015#012<BODY><h2>Service Unavailable</h2>#015#012<hr><p>HTTP Error 503. The service is unavailable.</p>#015#012</BODY></HTML>#015#012 Jan 15 03:15:17 PlexMediaServer pcmonitor: Error while registering computer:Error 503 fault: SOAP-ENV:Server[no subcode]#012"HTTP/1.1 503 Service Unavailable"#012Detail: The service is unavailable. Jan 15 03:16:27 pcmonitor: last message repeated 3 times Jan 15 03:16:28 PlexMediaServer pcmonitor: Error while registering computer:Empty response
  5. BrianAz

    Agent dies

    Hi Calin, thanks for taking a look. uname -a (sanitized) brianaz@myserver:~$ uname -a Linux myserver.ip-xxx-xxx-xx.net 3.2.0-58-generic #88-Ubuntu SMP Tue Dec 3 17:37:58 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux My config is attached. No issue since running it with valgrind yesterday: root 2692 0.4 1.0 195820 82488 ? Ssl Jan14 6:18 /usr/bin/valgrind.bin /usr/sbin/pcmonitord -v config.xml
  6. I'm going to give this a try. See my post here: http://forum.pulseway.com/topic/1042-agent-dies/#entry4257 My server is "dedicated" hardware, but I am able to install OS remotely myself via their management GUI. So I'm guessing its like a VPS in some regard. My server is the KS1 http://www.ovh.com/us/dedicated-servers/ Think it's related? I'll post back results in a day or so. Thx
  7. BrianAz

    Agent dies

    On my two home Ubuntu 12.04 boxes (VMs under esxi 5.1), the agent runs great. (Also seeing the issue on these servers as well, see post below) On the server I lease, I cant get it to stay alive. I am seeing these errors: user@server:/var/log$ sudo cat syslog | grep pcmonitor Jan 13 22:38:51 server pcmonitor: *** glibc detected *** /usr/sbin/pcmonitord: double free or corruption (fasttop): 0x0000000000d07ea0 *** Jan 13 22:40:03 server pcmonitor: Error while registering computer:Empty response user@server:/var/log$ date Mon Jan 13 22:42:45 EST 2014 user@server:/var/log$ sudo cat syslog.1 | grep pcmonitor Jan 12 13:21:47 server pcmonitor: Received request Resume notification 'COMPUTER_OFFLINE_FAA5378C-02CB-4D5F-B610-7C737C6CA6CC' Jan 12 13:37:35 server pcmonitor: *** glibc detected *** /usr/sbin/pcmonitord: double free or corruption (fasttop): 0x00007fd1a4029220 *** Jan 12 14:07:04 server pcmonitor: *** glibc detected *** /usr/sbin/pcmonitord: double free or corruption (fasttop): 0x0000000000f61730 *** Jan 12 14:12:35 server pcmonitor: *** glibc detected *** /usr/sbin/pcmonitord: double free or corruption (fasttop): 0x00007fc0980290d0 *** Jan 12 16:03:12 server pcmonitor: Error while registering computer:Empty response Any suggestions? I installed the updated agent all at the same time, so I am doubtful that it's related to the install but I will re-install tomorrow to be sure. Thanks, Brian
  8. I'm having the same problem with the Mac monitor. I start it (latest version) and it immediately hangs. See attached Activity Monitor screenshot. Also the colored ball appears when I hover over the icon.
  9. Thanks for the reply Calin. Is there an anticipated release date for the native agent?
  10. I am testing PC Monitor out on my home network. Everything is going well, except I cannot seem to get stats for eth0 on my Linux machines. All other data (CPU, Disk, etc) is showing just fine for the two Ubuntu 12.04 systems, only network data is absent. I followed the install guide from this forum and edited the config file appropriately (I think). What am I doing wrong? Can anyone confirm they get network data on Ubuntu 12.04? My config and ifconfig output are below. Thanks, Brian My config.xml: <config xmlns="http://www.pulseway.com/linuxconfig"> <!--Account Information--> <!--Username: Your Mobile PC Monitor username--> <!--Password: Your Mobile PC Monitor password--> <!--UseCustomServer: Enable this option only if you have a dedicated Enterprise Server assigned to your account--> <!--CustomServerAddress: If you have used UseCustomServer="true" you must specify the server address of the Enterprise Server--> <Account Username="MyUserNameHere" Password="MyPasswordHere" UseCustomServer="false" CustomServerAddress=""/> <!--Computer Information--> <!--Name: the name you want this computer to be listed as (Default: Linux computer name)--> <!--Group: the name of the group you want this computer to be listed in (Default: "Default")--> <ComputerInformation Name="DownloadDesktop" Group="Ubuntu"/> <!--Allowed Commands--> <!--What commands are allowed on this computer--> <!--Possible nodes are Restart ,ShutDown, PowerOff, Suspend, Hibernate--> <!--For each node the following argument must be present: Allowed (Values: true or false)--> <AllowedCommands> <Restart Allowed="true"/> <ShutDown Allowed="true"/> <PowerOff Allowed="true"/> <Suspend Allowed="true"/> <Hibernate Allowed="true"/> </AllowedCommands> <!--Notifications--> <Notifications> <!--Send a notification when the computer is offline--> <!--Enabled: true or false--> <WhenOffline Enabled="false"/> <!--Send a notification when the computer comes online--> <!--Enabled: true or false--> <OnOnline Enabled="false"/> <!--Send a notification when the computer shuts down--> <!--Enabled: true or false--> <OnShutdown Enabled="false"/> <!--Send a notification when the computer's available memory is bellow a certain percentage--> <!--Percentage: the percentage (between 10 and 90)--> <!--Enabled: true or false--> <MemoryLow Percentage="10" Enabled="false"/> <!--Send a notification when the computer's cpu usage is greater than a percentage for n minutes--> <!--Percentage: the percentage (between 10 and 90)--> <!--Minutes: n -the number of minutes (between 1 and 120)--> <!--Enabled: true or false--> <HighCpuUsage Percentage="90" Minutes="1" Enabled="false"/> <!--Send a notification when the computer's cpu usage is less than a percentage for n minutes--> <!--Percentage: the percentage (between 10 and 90)--> <!--Minutes: n -the number of minutes (between 1 and 120)--> <!--Enabled: true or false--> <LowCpuUsage Percentage="10" Minutes="1" Enabled="false"/> <!--Send a notification when a port is closed for n minutes--> <!--Minutes: n -the number of minutes (between 1 and 120)--> <!--Enabled: true or false--> <PortClosed Minutes="1" Enabled="false"/> <!--Send a notification when the space is low on a hdd. You can add multiple hdds by adding multiple <Hdd .../> nodes--> <!--Percentage: the percentage (between 10 and 90)--> <!--Path: the mount path--> <!--Enabled: true or false--> <LowHDDSpace Enabled="true"> <Hdd Percentage="20" Path="/" Enabled="true"/> </LowHDDSpace> <!--Send a notification when the public IP has changed--> <!--Enabled: true or false--> <IpChange Enabled="true"/> <!--Send a notification when a user logs in--> <!--Enabled: true or false--> <UserLogsIn Enabled="false"/> <!--Send a notification when a user logs out--> <!--Enabled: true or false--> <UserLogsOut Enabled="false"/> <!--Send a notification when a SSL Certificate is about to expire or has expired--> <!--Enabled: true or false--> <!--Days: how many days before the expiration date should the notification be sent--> <SSLCertificateExpiration Days="2" Enabled="false"/> <!--Send a notification when a web site is not available--> <!--Enabled: true or false--> <!--Minutes: for how many minutes should the web site be not available before the notification is sent--> <WebSiteNotAvailable Minutes="1" Enabled="false"/> <!--Ping Responses - allows the monitoring of network speed to various addresses--> <!--You can add multiple PingResponse nodes--> <!--Enabled: true or false. You can disable all ping response notifications notifications--> <PingResponses Enabled="false"> <!--Address: the ip or hostname you want pinged--> <!--Position: the order in which these rules are evaluated--> <!--Miliseconds: the value that defines a slow ping response--> <!--Minutes: for how many minutes should the condition stay activated before a notification is sent--> <!--PriorityOnSlowResponse: the priority for the slow response notification--> <!--PriorityOnNoResponse: the priority for the no response notification--> <!--Possible values for PriorityOnSlowResponse and PriorityOnNoResponse: 0=Critical, 1=Elevated, 2=Normal, 3=Low --> <PingResponse PriorityOnSlowResponse="1" PriorityOnNoResponse="0" Minutes="5" Miliseconds="50" Alias="Printer" Address="10.10.10.2" Position="1"/> </PingResponses> <MonitoredServiceStopped Minutes="1" Enabled="false"/> </Notifications> <!--Service Monitoring Config--> <!--Add one or more MonitoredService --> <Services> <!--Monitors Upstartd, Systemd or System V services--> <!--For System V init there is a requirement for the script. It has to support start, stop and status arguments and when requesting status it has to report "running"--> <!--Name: the name of the service--> <!--Instance: for Upstartd, if the service has multiple instances here you can specify it--> <!--ExcludeFromNotification: if you enable service stopped notifications you can choose to exclude this service (if it doesn't start at boot for example) (true or false)--> <MonitoredService ExcludeFromNotification="false" Name="cups" Instance=""/> </Services> <!--Web related config--> <Web> <!--SSL Certificates monitoring--> <!--You can add one or more SSL Certificates by adding Certificate nodes--> <Certificates> <!--Monitor SSL Certificate--> <!--ServerName: the server address or IP--> <!--Port: the server port (default is 443)--> <!-- <Certificate Port="443" ServerName="example.com"/> --> </Certificates> <!--Web Sites monitoring--> <!--You can add one or more web sites by adding WebSite nodes--> <WebSites> <!--Web Site--> <!--Type: Method used to test the web site. One of HEAD or GET--> <!--Url: Url of the web site--> <!--Name: A name for the type/url combination--> <!-- <WebSite Type="HEAD" Url="http://www.example.com" Name="Example HEAD"/>--> <!--<WebSite Type="GET" Url="http://www.example.com" Name="Example GET"/>--> </WebSites> </Web> <!--Network--> <!--Network related configs--> <Network> <!--Ping--> <!--Monitor ping response time to a specific server--> <!--Server: the IP or hostname of the server--> <!--Enabled: true or false--> <Ping Server="" Enabled="false"/> <!--Monitored Ports--> <!--You can monitor if a port is closed or opened--> <!--You can monitor multiple ports by adding multiple <Port.../> tags--> <MonitoredPorts> <!--Type - port's type (TCP or UDP)--> <!--Number- port's number--> <!--Name- port's name --> <!--Name- port's address (only applicable if port type is TCP)--> <!--<Port Type="TCP" Number="80" Name="80" Address="www.google.com"/>--> </MonitoredPorts> <!--Network Interfaces--> <!--The network interfaces you want to monitor--> <!--You can specify multiple interfaces , by adding multiple <Interface../> tags--> <NetworkInterfaces> <!--Name - the name of the interface--> <Interface Name="eth0"/> </NetworkInterfaces> <!--Wake on WAN settings--> <!--Port- the port on which the packet will be send--> <!--Enabled: true or false--> <WoWAN Port="9" Enabled="false"/> </Network> <!--Plugins to be included. You can add multiple plugins by adding multiple <plugin .../> nodes--> <!--Class: the full class name--> <!--Description: a description of the plugin--> <!--Location: the path to the jar containing the plugin--> <!--Name: the name of the plugin--> <Plugins> <!--<plugin Class="com.mobilepcmonitor.plugins.ComputerDetails" Description="Shows additional computer details and commands" Location="/opt/pcmonitor/plugin/plugins.jar" Name="Computer Details"/>--> </Plugins> <!--Specify if this computer is in maintenance mode or not--> <!--Possible values: true or false--> <MaintenanceMode>false</MaintenanceMode> <!--Other settings--> <Settings> <!--Configuration for syslog server notification and reporting.--> <SyslogServer> <!--Send a copy of every notification to a syslog server (true or false)--> <Enabled>true</Enabled> <!--Hostname or ip of the syslog server--> <Server>127.0.0.1</Server> <!--Port of the syslog server--> <Port>514</Port> <!--Send a status report to the syslog server--> <SendStatusReport>true</SendStatusReport> <!--Interval in minutes at which to send the status report--> <StatusReportInterval>5</StatusReportInterval> <!--Should the report include the processor usage? (true or false)--> <IncludeProcessorUsage>true</IncludeProcessorUsage> <!--Should the report include the memory usage? (true or false)--> <IncludeMemoryUsage>true</IncludeMemoryUsage> <!--Should the report include the disk space usage? (true or false)--> <IncludeDiskSpaceUsage>true</IncludeDiskSpaceUsage> <!--Should the report include the logged in user count? (true or false)--> <IncludeLoggedInUsersCount>true</IncludeLoggedInUsersCount> <!--Should the report include the network usage? (true or false)--> <IncludeNetworkSpeed>true</IncludeNetworkSpeed> <!--Should the report include the ping round trip times? (true or false)--> <IncludePingRoundtripTime>true</IncludePingRoundtripTime> <!--Should the report include the ping response times? (true or false)--> <IncludePingResponses>true</IncludePingResponses> </SyslogServer> </Settings> <DisableAutoUpdate>false</DisableAutoUpdate> </config> ifconfig: user@System:~$ ifconfig eth0 Link encap:Ethernet HWaddr 00:0c:29:b9:70:51 inet addr:192.168.30.95 Bcast:192.168.30.255 Mask:255.255.255.0 inet6 addr: fe80::20c:29ff:feb9:7051/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:366100833 errors:0 dropped:0 overruns:0 frame:0 TX packets:496444143 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:468366474507 (468.3 GB) TX bytes:505095338635 (505.0 GB) lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:105604 errors:0 dropped:0 overruns:0 frame:0 TX packets:105604 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:10127275 (10.1 MB) TX bytes:10127275 (10.1 MB)
×
×
  • Create New...