|
I have a hyper-v server with 4 GigE nic's. I have assigned one of the nic's as an internal network (192.168.x.x) and that nic is working as expected.
We have a need for a server to have access to the public side of our firewall so I have plugged nic #...
Started by WedTM on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Your issue (as I suspect the 'other' adaptor, you can always... .
I am assuming you have created a new virtual switch on th public network IP range, then hyperV networking is operating correctly..
The host should not need an IP address.
|
|
MAC address and IP address are used to uniquely identify a computer. When is an IP address used and when is a MAC address used?
Started by Ram on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
A MAC-Address is an Unique Identifier of the network interface (stored in the hardware), and the IP-Address is the assigned of their IP....
A MAC-Address and an IP-Address are two completely different things.
|
|
Is there some way for me to find IP address of machine connected in same LAN from its MAC address.
Started by Kazoom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Then your machine has thier MAC -> IP mapping in it's arp table you can ping your broadcast....
Setup:
IP: 192.168.2.150 NETMASK: 255.255.255.0
Your broadcast address is the last IP in your subnet with their mac address.
|
Ask your Facebook Friends
|
Is there a way to find mapping between MAC address to IP address in C#. i think RARP should be able to do that, is there an API available in C# for that
Started by Kazoom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Regards....
In case you and MAC address.
Hope this helps, Best regards, Tom.
Www.codeproject.com/KB/IP/host_info_within_network.aspx
It allows mapping of hostname, IP address of parsing the sResults to get the MAC address.
|
|
I need to find a IP address of a specific user and I only have the Mac address available, I'm using Ubuntu. Is this possible?
Started by Roland on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
If you have access to the DHCP server, you may be able to look up the MAC address there and see what IP address it got it to the IP....
Then, if the machine is behind a router, you will only get the router IP address.
|
|
How do I create valid IP ranges given an IP address and Subnet mask in Perl? I understand the concept of generating the IP ranges but need help writing in Perl. For example, if I AND the IP address and subnet mask I get the subnet number. Adding 1 to ...
Answer Snippets (Read the full thread at stackoverflow):
This:
#!/usr/bin/perl use strict; use warnings; use Socket; my $ip_address = '192.168.0.15'; my $netmask = 28; my $ip_address_binary = inet_aton( $ip_address ); my $netmask_binary = ~pack("N", (2**(32-$netmask....
|
|
Using JavaScript how would I validate an IP address "x.x.x.x" is a valid IPV4 unicast address e.g. is not 0.0.0.0 or multicast (224.0.0.0 to 224.0.0.255, 224.0.1.0 to 238.255.255.255, 239.0.0.0 to 239.255.255.255)?
Started by Andrew on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
An IP Address is really ....
The dotted quad notation you're seeing is just that: a notation that makes it easier on human eyes .
Tell whether the address is the network address or the broadcast address for that subnet.
|
|
When a IP-Range is written as aaa.bbb.ccc.ddd/ I need to calculate the first and the last included ip address in this range with C#.
Example:
Input: 192.168.0.1/25
Result: 192.168.0.1 - 192.168.0.126
Started by Anheledir on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The IP given to you to binary, the network address is the ip address where all of the host bits (the 0's .10101000.00100001.01001000 (ip address)
The bolded parts is the HOST bits (the rest are network bits).....
|
|
I have a port that is bind()'d to INADDR_ANY. I am receiving datagrams successfully. After receipt, I need to read the IP header to get the source IP address.
Started by sludge on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Won't work it is filter to receive a message not the address of coming packet.
Above) which will receive the source address which you can examine for whatever purposes you desire.
|
|
I manage a small-ish network that consists of less than 70 nodes. The previous system administrators opted to have a dhcp server and manually set dhcp addess.
I have opted to rather use dhcp address assignment instead of static address assignment except...
Started by biosff on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at serverfault):
You get the trade off of knowing exactly of documentation... .
A good point about documentation, make sure you do have the IP address ranges documented, explaining what machine's MAC address to a specific IP and deliver them by DHCP.
|