Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
ipaddress
- Page 1
Formatting of IPv6 addresses by System.Net.IPAddress.ToString()?
Programming
Software Development
12 Years Ago
by anshumanverma
I have IPv6 string and I want to make the
IPAddress
object. I tried the following code String ipString = "2400:…3C00:3FFE:0000:0000:5EFE:8999:48AA"; System.Net.
IPAddress
address;
IPAddress
.TryParse(ipString, out address); but address.ToString() is returning…
what numbers in ipaddress define?
Programming
Software Development
16 Years Ago
by ravikiran032
i would like to know what digits of
ipaddress
define. suppose
ipaddress
of 192.168.0.59 what these numbers 192 ,168 , 0 ,59 defines. does they have any value??
How to find source IPAddress of packet ?
Programming
Software Development
16 Years Ago
by RaooF
… address of packets, so that i discard them if the
ipaddress
is not a valid one. For this, i think i…
how to acquire IPaddress using hostname??
Programming
Software Development
16 Years Ago
by ravikiran032
i would like to know how to get
ipaddress
using host name of my friends computer in java programming. I have tried using [COLOR="Red"]getByName(".....")[/COLOR] method ,but it is a failure. will u assist me.......
data type ipaddress
Programming
Software Development
14 Years Ago
by novice20
….4.1.18489.1.2.2.2.9.30.0'),
IpAddress
('0.0.0.0'))] [/CODE] varBinds[0][1] is giving…
Re: data type ipaddress
Programming
Software Development
14 Years Ago
by novice20
Grib.... repr() of the value gives me: [B]
IpAddress
('0.0.0.0')[/B] :)
Re: data type ipaddress
Programming
Software Development
14 Years Ago
by Gribouillis
[QUOTE=novice20;1505117]Grib.... repr() of the value gives me: [B]
IpAddress
('0.0.0.0')[/B] :)[/QUOTE] Ok, so it's not at all weird, only it's not a very useful address... Were you expecting something else ?
Re: how to get ipaddress in c#.net?
Programming
Software Development
14 Years Ago
by Momerath
Your question is unclear. Do you want IP address of a machine or the headers of an email? For IP address you use:[code]IPHostEntry ip = Dns.GetHostEntry("www.google.com");
IPAddress
[] addr = ip.AddressList;[/code] Getting headers is a little more involved, I'd suggest searching for "read email C#" in Bing or Google.
Re: Formatting of IPv6 addresses by System.Net.IPAddress.ToString()?
Programming
Software Development
12 Years Ago
by Momerath
Ok, the reason why it does that is that the 0:5eFE in the 5/6 spots indicates that this is an [Intrasite Automatic Tunnel Addressing Protocol (ISATAP) Address](http://msdn.microsoft.com/en-us/library/aa922393.aspx) (Tunneling IPv6 traffic on an IPv4 network). That is the correct format for an ISATAP address, you'll just have to deal with the two …
Re: what numbers in ipaddress define?
Programming
Software Development
16 Years Ago
by Freaky_Chris
Perhaps [URL=http://www.computerhope.com/jargon/i/ip.htm]this[/URL] will help
Re: what numbers in ipaddress define?
Programming
Software Development
16 Years Ago
by peter_budo
Not to much you can work from this. Main point is that the provided IP address is class C, to be more precise it is private IP address class C (the range of private C class is 192.168.0.0 - 192.168.255.255) and that you pc can be find on this address in the network you assign to. However this does not give clue on what is network range (dependent …
Re: How to find source IPAddress of packet ?
Programming
Software Development
16 Years Ago
by LizR
It would depend a little on the connection you make. If its TCP based then refuse the connection based on IP, if its UDP eg connectionless then yes, each received packet would have to be ignored or used depending on wether it fits. Network sniffing is generally frowned on as companies can be sued by employees if they havent been notified that …
Re: How to find source IPAddress of packet ?
Programming
Software Development
16 Years Ago
by RaooF
Thank you very much.. Can I read router databases in my C# applications. If yes, which databases of router i can read ?
Re: How to find source IPAddress of packet ?
Programming
Software Development
16 Years Ago
by LizR
Depends on your router, Im not aware of any routers that have databases in programming terms. They have config files, and memory, and you can access them either by ssh or telnet, run commands to return various datas such as links up/down/config/errors etc. you can then parse that and display it in anyway you see fit.
Re: how to acquire IPaddress using hostname??
Programming
Software Development
16 Years Ago
by jasimp
EDIT: Never mind, I hit the wrong button.
Re: how to acquire IPaddress using hostname??
Programming
Software Development
16 Years Ago
by darkagn
Hmm, the InetAddress.getByName(String) method should work. Are you using the full computer name? That is, including the network?
Re: how to acquire IPaddress using hostname??
Programming
Software Development
16 Years Ago
by ravikiran032
[QUOTE=darkagn;684204]Hmm, the InetAddress.getByName(String) method should work. Are you using the full computer name? That is, including the network?[/QUOTE] i don't know weather it is involved in a network or not. how i should know wheather it is involved in a network or not.
Re: how to acquire IPaddress using hostname??
Programming
Software Development
16 Years Ago
by jasimp
What I think is your friend either doesn't want you to have his IP address or doesn't know you are trying to get it. I also think it would be beneficial to those trying to help you if you showed them what you have done, i.e some code.
Re: how to acquire IPaddress using hostname??
Programming
Software Development
16 Years Ago
by ravikiran032
[QUOTE=jasimp;684851]What I think is your friend either doesn't want you to have his IP address or doesn't know you are trying to get it. I also think it would be beneficial to those trying to help you if you showed them what you have done, i.e some code.[/QUOTE] [code=java] import java.net.*; import java.util.*; public class InternetAddress …
Re: how to acquire IPaddress using hostname??
Programming
Software Development
16 Years Ago
by darkagn
The only time that the getByName method hasn't worked for me was when I was trying to access a computer on a different domain / network to me. I had to use the fully qualified computer name for it to work. What is the name you are inserting and are you on the same domain?
Re: how to acquire IPaddress using hostname??
Programming
Software Development
16 Years Ago
by Ezzaral
[QUOTE=ravikiran032;684847]i don't know weather it is involved in a network or not. how i should know wheather it is involved in a network or not.[/QUOTE] If he's not on a network, how do you figure he's going to have an IP address? Do you know what an IP address is for?
Re: data type ipaddress
Programming
Software Development
14 Years Ago
by Gribouillis
Try to print the repr() of the weird string, then post it here.
Re: data type ipaddress
Programming
Software Development
14 Years Ago
by novice20
ok... thanks Grib... before using repr(), I was getting some unrecognizable string.. something like four squares!! U guided me in the right direction... Thanks a lot :)
Operator Overloading
Programming
Software Development
18 Years Ago
by balgarath
…quot; << endl; return 0; } [/code]
IPAddress
.h [code] #include <iostream> using namespace std…using namespace std;
IPAddress
::
IPAddress
() { p1 = 0; p2 = 0; p3 = 0; p4 = 0; } bool
IPAddress
::operator==(const
IPAddress
&t2) …; } istream& operator>> (istream &in,
IPAddress
&r) { char mystring[16]; char *str1, *str2,…
Google Anaylitics redirects... possible virus?
Hardware and Software
Information Security
14 Years Ago
by Cosmonaut
…CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{27C516A6-D79B-40A8-B169-30F5E2569C79}@
IPAddress
0.0.0.0? Reg HKLM\SYSTEM\CurrentControlSet\Services…\Services\Tcpip\Parameters\Interfaces\{44FE7F73-6B88-47BB-9638-CB4232516164}@
IPAddress
0.0.0.0? Reg HKLM\SYSTEM\CurrentControlSet\Services…
Determining Culpability Via login events
Programming
Software Development
4 Years Ago
by MagnusTheRed90
… User { get; set; } public LoginEvent(User user, String
ipAddress
) { this.User = user; this.
IpAddress
=
ipAddress
; this.DateOccurred = DateTime.Now; }//end method public LoginEvent…
Re: Determining Culpability Via login events
Programming
Software Development
4 Years Ago
by MagnusTheRed90
…obj.Post.DateOccurred); ////.Select(obj => new {
IpAddress
= obj.Login.
IpAddress
, Content = obj.Post.Content, DateOccurred = obj.Post.…foreach (var tuple in list) { String
ipAddress
= tuple.Item2.
IpAddress
; Post p = tuple.Item1; Console.WriteLine(…
Re: Getting a User's IP Via PHP
Programming
Web Development
10 Years Ago
by jj.dcruz
…['HTTP_FORWARDED_FOR']; else if($_SERVER['HTTP_FORWARDED']) $
ipaddress
= $_SERVER['HTTP_FORWARDED']; else if($_SERVER['REMOTE_ADDR']) $
ipaddress
= $_SERVER['REMOTE_ADDR']; else $
ipaddress
= 'UNKNOWN'; return $
ipaddress
; } **note** that this function…
Complies but freezes when I try to run
Programming
Software Development
13 Years Ago
by cummings15
…; len; i++) { if(list[i].domName == dName) { list[i].
ipAddress
= IpNum; list[i].counter += 1; } } } void Delete(domList…<< " is " << list[i].
ipAddress
<< endl; list[i].counter += 1; } } } …
Recieving Wrong IP?
Programming
Software Development
11 Years Ago
by alek.mieczkowski
… Page_Load(object sender, EventArgs e) { string
ipAddress
= Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (string.IsNullOrEmpty(
ipAddress
)) {
ipAddress
= Request.ServerVariables["REMOTE_ADDR"]; } var…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC