Questions tagged [ip]

The IP (internet protocol) is a protocol for transmitting data over packets ("datagrams"). It is the primary protocol of the Internet. "IP" may also refer to an IP address, the numerical address assigned to an IP-capable device.

The Internet Protocol (IP) forms the basis of media-independent transmission and routing (a.k.a forwarding) of network packets, it is part of the Internet Protocol Suite.

In the OSI model, it resides at Layer 3 (the network layer). The protocol data unit for this layer is called a packet. IP packets are identified by source and destination IP addresses.

IP addresses, in combination with subnet masks, provide the basis for the concept of networks (or internetworks, more exactly) in the OSI model.

This means that a node, using IP addressing, can talk to machines it is directly connected to (on the same subnet), or that is on another network (on a different subnet).

While subnet masks are not specified in IP packets, they are used by devices that transmit and receive IP packets to determine if the packet is meant for another node that network, or another network. If the traffic is not meant for this network, it must be forwarded to that network via a router, and vice versa.

This is all in contrast to the common Layer 2 protocol Ethernet, in which nodes can only talk to other nodes reachable on the same network.

IP provides no guarantees on packet delivery. Responsibility for ensuring this reliability through retransmission and data integrity checking is assumed by a higher layer protocol, usually TCP.

2758 questions
0
votes
2 answers

Detect pre configured router IP address

I received a pre-configured router (Juniper SRX240) for local intranet. The router is configured with static IP and DHCP is not enabled. The problem is that I don't have a clue what is the IP address configured, So I don't know how to set up the IP…
Mellowcandle
  • 189
  • 1
  • 8
0
votes
1 answer

Network bridge loses its IP configuration

After certain uptime of my computer, network bridge adapter (includes WLAN and virtual machine) in my Windows 8 computer suddenly deconfigures from 192.168.1.9 (address made static at router's DHCP server for this computer) to automatically assigned…
miroxlav
  • 13,008
  • 6
  • 65
  • 103
0
votes
1 answer

Why are there so many formats for local IP address?

If I enter the following command in CMD prompt... netstat -ano I get a list of active connections as expected. What confuses me is that there are many different formats for my "Local Address"... Proto Local Address Foreign Address …
Niko Bellic
  • 1,162
  • 3
  • 13
  • 20
0
votes
1 answer

How to load a website from a certain ip?

I'm on a DNS (that I can't change) that propagates websites slowly (like days before Google's dns) so when I purchase a domain and point it to my web server and load it in my browser, it goes to a different IP then my web host. My question is, is…
Tom
  • 486
  • 3
  • 6
  • 19
0
votes
1 answer

When I access Wikipedia from its IP address, this happens ("not configured on this server")

First, I checked Wikipedia's IP address using the ping command... Then I tried to access their website using the IP address directly... Why do I not get to the main Wikipedia page? I thought that when I type in wikipedia.org, DNS resolves the IP…
Niko Bellic
  • 1,162
  • 3
  • 13
  • 20
0
votes
2 answers

Unable to access shared folder in Win 7 homegroup via IP address

I have 3 Win-7 64 bit machines in a homegroup. MAC addressing enabled on the router. Machine A, B and C. All are in a homegroup. I want to share a folder on machine B to the rest of the group so I share with homegroup (read/write allowed). I jump on…
user1330287
  • 99
  • 1
  • 2
  • 10
0
votes
1 answer

IP addresses from around the globe show up in my Router logs

I was checking my Wifi Router logs, and i spotted a lot of the following - Unrecognized attempt blocked from 198.204.230.34:5109 to xxx.xxx.xxx.xxx UDP:5060 Unrecognized attempt blocked from 107.181.174.205:55372 to xxx.xxx.xxx.xxx…
Quest Monger
  • 145
  • 8
0
votes
0 answers

Allow Internet access only 1 IP in Windows XP

I would like to block internet connections to all IP's except 1 in Windows XP. How can I do it most easily?
Risto
  • 1
  • 1
0
votes
1 answer

Local IP Address is not reachable after installing a third party VPN?

I have ASP.NET website and SQL Server working fine by using my local ip address 192.168.1.123 but yesterday I have installed a VPN client after this I was unable to navigate my websites using 192.168.1.123 and connect my SQL database using the IP.…
0
votes
1 answer

NodeJS and Apache on port 80 using different IP addresses - Apache needs port 80 clear even though it's configured to use port 80 of a different IP

I'm using a node.js app on port 80 of 127.0.0.2:80 server.listen(80, '127.0.0.2', function() {... And I want to use Apache on port 80 of another ip address, say 127.0.0.3:80, so I have this in my httpd.conf Listen 127.0.0.3:80 ServerName…
laggingreflex
  • 5,035
  • 17
  • 65
  • 96
0
votes
2 answers

Rapsberry webserver nginx - How to publicly acces FTP vsftpd

I have set up my Raspberry Pi to run Nginx for my webserver. My public IP shows the first website, the domain folder, I made on it, this happens on port 80. Now I have set up vsftpd as my FTP server, however I can only connect with it on my local…
Arndroid
  • 103
  • 1
  • 1
  • 3
0
votes
1 answer

Why "gmail.com" and "www.gmail.com" IPs navigate me to "google.com" homepage?

As you see below I get a ping of www.gmail.com and gmail.com : C:\>ping www.gmail.com Pinging googlemail.l.google.com [74.125.232.149] with 32 bytes of data: Reply from 74.125.232.149: bytes=32 time=118ms TTL=49 Reply from 74.125.232.149: bytes=32…
TheGoodUser
  • 1,175
  • 2
  • 22
  • 38
0
votes
2 answers

Subnetting based on networking needs

I am unable to visualize the solution to the following question Your company has obtained the 131.107.168.0 /21 address space from an ISP. You now need to design this address space to accommodate the following network segments. Segment A: 600 hosts…
Glowie
  • 127
  • 9
0
votes
1 answer

check if two IP addresses belong to the same router

I have several hosts from which I traceroute to the same destination. Is there a way to determine whether two IP addresses belong to different interfaces of the same router? Is it enough to check if the hostname is the same (dig +short -x…
Ricky Robinson
  • 169
  • 2
  • 13
0
votes
1 answer

Can not access localhost by external ip

I know there are various documents available on web giving the steps to do this but I am not able to fix the problem -- I have an angularjs project which is running on localhost (and os is ubuntu 14.04), I want to access it via external ip. Here is…
Akg
  • 101
  • 3
1 2 3
99
100