Skip to main content

All Questions

Tagged with
4 votes
0 answers
460 views

Is there a simple way to get per-protocol (i.e. IPv4/IPv6) statistics from netstat?

After a change of ISP, I've recently gotten IPv6 access, so I thought I'd play around a little with netstat to see if it's possible to get some kind of high-level per-protocol statistics from macOS ...
gmw's user avatar
  • 151
1 vote
1 answer
897 views

netstat -r output, internet vs internet6, different gateway formats

What's the difference between internet and internet6 routes? I'm assuming internet6 stands for IPv6? netstat -r Internet: Destination Gateway Flags Refs Use Netif ...
koperandus's user avatar
0 votes
1 answer
1k views

Netstat showing open established connection but I can't end the process

So I've been curious as to know why I have these open established ipv6 connections. I typed in the command prompt Netstat -ano to get the connections, PID numbers, and port numbers. The connections ...
Ezekielthewatchman's user avatar
1 vote
3 answers
7k views

Netstat -an in Command Line

In the below picture, as you see When I write netstat -an inside the command line I got this answer in the picture. The last line is different than others. Sometimes, I query netstat -an command ...
Gürkan Çatak's user avatar
3 votes
1 answer
4k views

Linux netstat shows ipv4 mapped ipv6 address

Even after disabling ipv6 on my linux machine and restarting network services, and not having an ipv6 address assigned to an interface, one of my daemon (cassandra to be specific)is using an ipv4 ...
scott's user avatar
  • 133
1 vote
2 answers
815 views

"awk" not working when using it with "watch"

In order to watch my IPv6 traffic totals I want to run this command: netstat -s -6 | grep -i octet | grep -vi cast | awk '{ print $2/(1024*1024*1024) }' combined with "watch -n1", so it gets run ...
M. Schmidt's user avatar
6 votes
4 answers
30k views

bind-address = ::1 # however, netstat shows 0.0.0.0:3306 LISTENING

I'm running MySQL 5.6 on 64-bit Windows 7 with IPv6 and IPv4 enabled. In my.ini: port=3306 bind-address = ::1 I was hoping to use IPv6 and restrict to the loop-back adapter. I used ::1 instead ...
ebyrob's user avatar
  • 208