Questions tagged [tcpip]

TCP and IP are two important protocols used in networking today. Due to their importance, the Internet Protocol Suite is also commonly known as "TCP/IP"

464 questions
4
votes
3 answers

Can you use WMI to determine if a connection gets its DNS servers from DHCP?

The DNS server search order for a network interface can be read from Win32_NetworkAdapterConfiguration like this in Powershell, or programmatically using .Net ManagementObjects: > $NICs = Get-WMIObject Win32_NetworkAdapterConfiguration |…
Derrick
  • 143
  • 1
  • 1
  • 5
4
votes
2 answers

once in a while windows / .net application ignores the tcp fin flag

i've run into a network problem which i cannot solve. on a few computers running windows 8.1 and communicating with linux http server tcp connections dangle on the windows side instead of being properly closed. after response [fragmented into few,…
pQd
  • 29,981
  • 6
  • 66
  • 109
4
votes
1 answer

TCP works for a while, then fails, why?

This comes from an implementation of OpenStack, and we have a fix, but I don't understand why we need this fix. My machine has an ip of 192.168.20.45 My default gateway (pfsense) has an ip of 192.168.20.254 My openstack compute node has an ip of…
boatcoder
  • 548
  • 2
  • 5
  • 19
4
votes
1 answer

How to setup an TCP/IP proxy with traffic interception, for MS SQL traffic in this case

I would like to setup an MS SQL proxy server. It should forward all requests 1:1 and make it possible to log them, and modify some of the requests or answers according to some replacement rules I setup. Maybe some TCP IP networking software or…
mit
  • 1,914
  • 6
  • 29
  • 42
4
votes
3 answers

Any free TCP socket monitoring application?

Please can you suggest any free application by which I can monitor the opening/open/closing TCP/IP sockets? Something that can tell me: Total number of sockets currently (different count for different socket states) Max till launch Any graph of…
Hemant
  • 229
  • 1
  • 3
  • 12
4
votes
2 answers

How do I apply multiple subnets to a server with one NIC?

I am trying to route multiple IPs through one physical NIC on my dedicated server for use with Proxmox KVM VMs. I have a dedicated server which is currently running Debian 4.4.5-8 with 3 available ip addresses for use, which will be displayed as…
user143092
4
votes
2 answers

How Can I Harden the TCP/IP Stack in Windows Server 2008?

I would like to make sure that my Windows 2008 servers are hardened against DDOS attacks. There is a Microsoft Technet article on Hardening the TCP/IP stack, but it was last revised in January 2006. There is another article (somewhat duplicative)…
Adam Brand
  • 6,127
  • 2
  • 30
  • 40
4
votes
1 answer

Iproute2 tools vs conntrack tools

I have a linux box which is setup as firewall/gateway for the network. Was just wondering why ss and other iproute2 tools show much less than iptables conntrack. Is it because the router function is happening in kernel only? ss -na Shows only two…
Adrian Cornish
  • 531
  • 1
  • 4
  • 12
4
votes
3 answers

How to automate DNS server reconfiguration for TCP/IPv4 and TCP/IPv6 in Windows 7?

I need to switch Internet Protocol Version 4 (TCP/IPv4) and Internet Protocol Version 6 (TCP/IPv6) settings for DNS server configuration from "Obtain DNS server address automatically" to hard coded values (for Google's DNS servers) and back. It's…
Alek Davis
  • 153
  • 1
  • 1
  • 7
4
votes
3 answers

Backups take so long that the firewall closes the connection

A bit of a mashup of systems here, so bear with me. Essentially, I'm having some trouble using the Backup Exec agent for Oracle, while trying to backup a remote Linux server. The BE agent appears to use RMAN to backup the databases The backup…
jimbobmcgee
  • 2,675
  • 4
  • 27
  • 43
4
votes
1 answer

Behaviour of solaris tcp stack with relatively high RTT and bursty traffic

I have an application that is distributing data from New York to Tokyo over TCP running Solaris 10. Mean throughput is < 1Mbps, peak throughput can reach 20-30Mbps for seconds at a time though typical spikes are more like 10Mbps. Individual message…
Matt
  • 141
  • 2
4
votes
1 answer

Can a TIME_WAIT connection be restored?

Is it possible to restore a connection that is in state TIME_WAIT? If not, I use raw packets (forgering the source), is it possible? (Please understand that I do not intend to do bad things, it's just a matter of curiosity)
jyz
  • 155
  • 6
4
votes
1 answer

Maximum number of TCP clients in Windows 7?

I am running client load testing software for my server from a Windows 7 Enterprise box. The client box is able to get up to 16346 TCP connections out, and then it starts giving the error “An operation on a socket could not be performed because the…
evilfred
4
votes
4 answers

Diagnosing and debugging LAN congestion / connection issues

What are the top N tools / methodologies used to diagnose and repair network issues? Given a LAN, for example, where users are able to consistently ping an outside server, but any data intensive connections are flaky; how would you begin solving…
John Weldon
  • 413
  • 1
  • 3
  • 13
4
votes
3 answers

Are there simpler ways to do traffic shaping in linux besides tc?

I read lartc but I don't feel I need such a complicated solution for simple needs. One of such simple use cases is to limit a specific process' available bandwidth, upstream or downstream. How can I run wget or firefox constrained to 50 kb/s…
silviot
  • 281
  • 6
  • 13