taplinb
Sep 11 2005, 11:30 AM
Among my other duties, I help run a small computing lab for med students at the U of MN. Recently I learned that though we only have about twenty legitimate DHCP clients on our wired ethernet getting addresses from our Mac OS X 10.3 Server (great system), thirty allocated DHCP addresses were being used. Huh? I found that some addresses went to testing, which I understand, but others were being grabbed by PCs that should have static IPs but were misconfigured and/or by outsiders who unplugged our PCs to network personal laptops (a no-no). We don't watch our PCs all the time and can't trust after-hours visitors to behave, so.... First I made a list of the MAC addresses for every PC or Mac I knew should have DHCP. These 12-character addresses are globally unique. In OS X find it under System -> Network -> Ethernet (I think). On Win2k/XP Start -> Run cmd and enter "ipconfig /all" to find the MAC addresses and more. Warning: some PCs, Macs, and laptops have more than one address. Be sure to record the wired one. Then I logged onto our OS X Server as Administrator and lanuched the Server Administration app. After waiting a bit for it to recognize all services, including the Netboot service I had disabled (and may discuss elsewhere), I double-checked the DHCP status but then expanded Netboot -> Settings. It's a little counterintuitive to find DHCP restrictions under something other than DHCP, but that's where it is. I selected to Exclude all but the listed addresses, then proceeded to enter every MAC addresses I had recorded as being from a legitimate DHCP client PC or Mac. The format is AA:AA:AA:AA:AA:AA. The data entry is a little awkward and time-consuming, but you only need to do it once per new device. After entering all that, I played it "safe" and properly restarted the whole OS X Server (when nobody was depending on it) to make sure all services worked. We also sometimes use Netboot to deploy OS X configs centrally, but that's a more complex topic and would consume too many words.
Reply
Recent Queries:--
rtl8139d osx - 20.15 hr back.
Similar Topics
Keywords : set, os, x, server, 10, 3, dhcp, filter, desks, restrict, pcs, macs, dhcp, ip, s
- How To Make Your Own Counter Strike Source Dedicated Server!
(0)
Php Word Filter
Have you accidently sworn on your site? Or do you want to keep visitor (7) This is pretty simple but very useful if you don't want people to swear. We will be using
str_replace for this. CODE <?php str_replace ("curseword,
"replacemet"); ?> Thats pretty simple, just fill in the curse word and the
replacement, and then repeat... heres what it would look like full size: CODE <?php
str_replace("swear", "replacement"); str_replace("swear",
"replacement"); str_replace("swear", "replacement");
str_replace("swear", "....
How To Create Counter-strike 1.6 Server In Console Mode
(5) Hello! Now I will show you how to create a CS 1.6 Dedicated server /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> 1. Locate HLDS.exe. It
could start it from Steam. 2. Make a batch file. You could name it how you like, I writed it as
start.bat. It should be located in the same folder as the HLDS.exe. It should contain something like
this: CODE HLDS.EXE -console -game cstrike -port 27015 +maxplayers 24 +map bl_counterquake
+sv_lan 0 +rcon_password yourrconpass -secure I recommend -console to be there, couse it starts
hld....
Starting Or Stopping Apache And Mysql Server Via Batch File
(0) Hi guys, this is a litte tutorial about how we start and stop the Apache and MySQL in Windows NT
(2000, XP, 2003) via a batch file script. As we know in Windows NT based system Apache and MySQL
installed as Windows Services. So we can stop and start it using NET command. For more information
about DOS command, type HELP at command prompt. I assuming that your MySQL service name is "mysql"
and your Apache (Apache 2.0.x) service name is "apache2". If you want to chek it click Start > Run >
services.msc > OK. Windows IS NOT Case Sensitive. Let's get started!. 1. ....
Making A Dynamic Page On Blogspot
Using an external server to make your pages hosted on blogspot dynamic (5) Good morning everyone. Have you ever wondered how to allow your visitors to edit content on your
blog? Like adding a post straight off the page, adding a link, editing your profile etc. This will
be extremely useful if you want your visitors to contribute to your blog besides writing comments or
tagging. 1. Adding a post straight off the page. Go to blogger.com, login, select your blog. Go to
settings -> email. By enabling blog email, you can now add a post by simply sending an email to the
address you specified. The address should look something like: yourusername....
Checking For Open Ports From Php
If you want to check the status of a server at a specific port you can (3) Some days ago, i needed to check ports of a server from a webpage, for advising of its status. I
simply used a great php code that's fsockopen . I'll explain it in the following example:
(Imagine a file called 'checkports.php', containing the next) CODE <? $address
=" trap17.com"; //Here you can specify the address you want to check ports $port =
"80"; //Here you can specify the port you want to check from $address $checkport =
fsockopen($address, $port, $errnum, $errstr, 2); //The ....
Run Your Own Mail / Radio Server
SHOUTcast and more (24) firstly i want to point out that i did have alot more images that i took for this tutorial but i was
only aloud to show 15 in this post /sad.gif" style="vertical-align:middle" emoid=":(" border="0"
alt="sad.gif" /> ill ask for the ammount to be raised then i can add the rest in /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> ok here we go.. Audio
Streaming Server (Radio) What is a Streaming Audio Server Its an application that will allow you to
"stream" or send a continuous block of data to a client. In a few words, it will allow....
A Nice Mysql Server Check
(4) I made this and its not very hard at all just fill in the info and it willl see if your mysql is up
or down CODE <html> <head> <title> Mysql Connection Test
</title> </head> <body> <h2> <?php // On this you need to put
your host most of the times localhost username and password. $conncect = mysql_connect (
"host", "Username", "password" ) or die (" Sorry your server
can't connect to your mysql server <BR> Check to see you have put in the Username and....
How To "lock Down" A Os X User Account
Crude but effective way to maintain Macs (1) Here's a quick summary of how one can configure OS X for use in public labs running Panther
(10.3). It should also work with Tiger (10.4) but I dunno. There may be better ways, but this is
quick and cheap: 1. Install OS X fresh, or boot up your new Mac, and set the username to
MacAdmin or the like. This is now the administrator account which users should never touch.
Share this password only with trusted admins authorized to muck with critical systems. 2.
Install all the software you expect anyone to need in the default folders (usually Applicat....
Server Status
MAke Your own server status in PHP (12) My Friend and i made an mmorpg we decided to make a code so the users could tell when the game
server was running this codoe has many other uses to like monitor a website or w/e you want to do.
CODE <? $ip = "youriphere"; $port = "yourporthere"; if
(! $sock = @fsockopen($ip, $port, $num, $error, 5))
echo '<B><FONT COLOR=red>Offline</b></FONT>'; else{ echo
'<B><FONT COLOR=lime>Online</b></FONT>'; fclose(....
How To Setup Your Own Dns (domain Name Server)
(1) How To Setup Your Own Dns (Domain Name Server) This is only a quick tutorial, there are literally
hundreds of little tricks you can do with a DNS, but this will get your basics up and running.
I'm assuming you want to setup a windows DNS server, but the principals will work for most
servers. You will need.. 1) A domain name over which you have full control 2) DNS server
software(Windows server always comes with one of these) 3) At least one fixed IP address, allthough
two is highly desirable 4) An idea of what services you want on your server The first thing you ....
Checking Your Php Version
check your version of your server (1) This is a very easy tutorial, others may know of this... step 1 => Download the attachment step 2
=> upload to your public directory step3 => open and run the files and you'll get a whole list
of your server environment and so on.......
Installing And Connecting To A Ventrilo Server
(0) 1: Download The Client From http://www.ventrilo.com/download.php 2: Install The Client 3: Boot
The Client 4: Click the Arrow Pointing to the Right beside the User Name Tab. 5: Click The New
Button 6: Type In Your Desired Username And Hit Ok 7: In The Phonetic Spot, type your username
again 8: Enter A Description If Wanted and click ok 9: Click the arrow pointing to the right
beside the server tab. 10: click the new button. 11: Type in a name for the server. 12: Type in
the server address that you are connecting to in the Hostname or IP slot. 13: Click Ok. ....
Looking for set, os, x, server, 10, 3, dhcp, filter, desks, restrict, pcs, macs, dhcp, ip, s
|
|
Searching Video's for set, os, x, server, 10, 3, dhcp, filter, desks, restrict, pcs, macs, dhcp, ip, s
|
advertisement
|
|