473,796 Members | 2,599 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Fetching Host name and MAC address

123 New Member
Hey all,
I am trying to make one script which I can run on different computers and give me the hostname as well as the MAC address.

Can you please help me how to do so ??script in Perl or PHP will work...
Thanks..
Jun 26 '08 #1
2 3528
pbmods
5,821 Recognized Expert Expert
Heya, AJD.

The hostname is available in your $_SERVER array.

You can get the MAC address on a Unix system via the `ifconfig` command (i.e., system('ifconfi g');). Be prepared to do some parsing, though.
Jun 26 '08 #2
ajd335
123 New Member
Heya, AJD.

The hostname is available in your $_SERVER array.

You can get the MAC address on a Unix system via the `ifconfig` command (i.e., system('ifconfi g');). Be prepared to do some parsing, though.

Hey
thanks pbmod, But I am looking for some PHP script , as i need IP address, hostname and MAC address also ,
The script i used is ,
Expand|Select|Wrap|Line Numbers
  1. <?php
  2. echo "IP Address Is : ";
  3. echo $_SERVER['HTTP_X_FORWARDED_FOR']; // Show IP
  4.  
  5. $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
  6.  
  7. echo " Host Name : ";
  8. echo gethostbyaddr($ip);
  9. $mac = returnMacAddress();
  10. function returnMacAddress() {
  11.  
  12. // Get the arp executable path
  13. $location = `which arp`;
  14. // Execute the arp command and store the output in $arpTable
  15. $arpTable = `$location`;
  16. // Split the output so every line is an entry of the $arpSplitted array
  17. $arpSplitted = split("\n",$arpTable);
  18. // Get the remote ip address (the ip address of the client, the browser)
  19.  
  20. $remoteIp = $ip;
  21. foreach ($arpSplitted as $value) {
  22. // Split every arp line, this is done in case the format of the arp
  23. // command output is a bit different than expected
  24. $valueSplitted = split(" ",$value);
  25. foreach ($valueSplitted as $spLine) {
  26. if (preg_match("/$remoteIp/",$spLine)) {
  27. $ipFound = true;
  28. }
  29. // The ip address has been found, now rescan all the string
  30. // to get the mac address
  31. if ($ipFound) {
  32. // Rescan all the string, in case the mac address, in the string
  33. // returned by arp, comes before the ip address
  34. // (you know, Murphy's laws)
  35. reset($valueSplitted);
  36. foreach ($valueSplitted as $spLine) {
  37. if (preg_match("/[0-9a-f][0-9a-f][:-]".
  38. "[0-9a-f][0-9a-f][:-]".
  39. "[0-9a-f][0-9a-f][:-]".
  40. "[0-9a-f][0-9a-f][:-]".
  41. "[0-9a-f][0-9a-f][:-]".
  42. "[0-9a-f][0-9a-f]/i",$spLine)) {
  43. return $spLine;
  44. }
  45. }
  46. }
  47. $ipFound = false;
  48. }
  49. }
  50. return false;
  51. }
  52.  
  53.  
It gives IP address and hostname correct but , does not show MAC address..
Jun 26 '08 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

0
2062
by: Andres Baravalle | last post by:
Hi, I have a problem using a URL fetching algorithm (HTTP 1.0). To download an image, I used to use this algorithm: <?php Header("Content-type: image/gif"); $referer = "http://www.creators.com/comics_show.cfm?comicname=mrh";
9
3348
by: Jeff | last post by:
Is there a way to echo back a case sensitive $HTTP_HOST in PHP? For example if I type HostName.domain.com in my browser I want to return it exactly as it appears in the location part of the browser "HostName.domain.com" but it keeps returning a case insensitive result "hostname.domain.com".
0
1916
by: C3 | last post by:
Hi everone. I'm trying to write a shell script that fetches a number of images from a map website (www.whereis.com.au). Basically, the page asks you for a street address and then queries the server in a strange way, and then displays the map you asked for. It then allows you to scroll in different directions from that map. My aim is to be able to write a program that will take a street address, query the website, and return the...
5
8187
by: Patrick | last post by:
Hi all, In my SQL procedures in DB2 8.2, I current declare several cursors that return select statements with 10 columns in it. As a result, assigning host variables becomes a coding mess, as I would have to declare anywhere from 50-100 host variables just so I can process them. Is it possible to fetch the row from a cursor into a single
2
4765
by: martin lanny | last post by:
Simple network scanner is a part of my dotnet solution. It pings ip addresses in a selected network range and gives me the response time for each computer it finds. Anyhow, I would need to retrieve two more pieces of information for each active (local network) IP address: - Computer's Host Name - Mac Address
3
6825
by: ajd335 | last post by:
Hey all, I am trying to make one script which I can run on different computers and give me the hostname as well as the MAC address. Can you please help me how to do so ??script in Perl or PHP will work... Thanks..
1
1233
by: Ivan Ven Osdel | last post by:
>----- Original Message ----- Here's a function I wrote for checking remote or local file existence. It works for me but admittedly I haven't tested many cases with it. Also its currently specific to an http URI scheme. def fileExists(self, fileUrlPath): fileExists = False if "http:" in fileUrlPath.lower():
4
4283
by: tokcy | last post by:
HI every one, i am using tooltip on click of link and i want like when that tooltip open then background window would be blure(). can anyone help me...
0
9531
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10237
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10018
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7553
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6795
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5446
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5578
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4120
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3735
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.