nightfox
Mar 28 2006, 01:32 AM
| | Hey,
Here's a weird problem I've encountered. On my test server running CentOS and Apache2 w/ the Apache2 Manual installed and accessible from the web, everything seems fine. So I access it via my home network on which the server is located and the manual loads like I'm on a 56K connection. To give you an idea of the speed, it's just a tweak faster than using MySpace during peak hours. MySpace is still slower than my server though. But today at school, I try it and the thing loads like it was on an OC-93 fiber line at a data center!
AND- if I try to FTP into the server on my LAN, it takes forever! But at school when I tried it, it was like FTPing into my site here at Astahost, maybe even faster due to the server having 0 load.
What is up with my network? Or is it the way CentOS/Apache is configured?
Thanks for any help!
[N]F |
Comment/Reply (w/o sign-up)
DjCalvin
May 1 2006, 03:32 AM
This may sound stupid, but we have seen a big difference in a couple datacenters this way. Check your speed duplex settings on the computers vs the switch. most switches are set to auto/auto by default. and so isnt most nic's.. change them to manual settings. if your switch goes 100 full, set that on the switch and on your machine. - C QUOTE(nightfox @ Mar 27 2006, 08:32 PM)  Hey,
Here's a weird problem I've encountered. On my test server running CentOS and Apache2 w/ the Apache2 Manual installed and accessible from the web, everything seems fine. So I access it via my home network on which the server is located and the manual loads like I'm on a 56K connection. To give you an idea of the speed, it's just a tweak faster than using MySpace during peak hours. MySpace is still slower than my server though. But today at school, I try it and the thing loads like it was on an OC-93 fiber line at a data center!
AND- if I try to FTP into the server on my LAN, it takes forever! But at school when I tried it, it was like FTPing into my site here at Astahost, maybe even faster due to the server having 0 load.
What is up with my network? Or is it the way CentOS/Apache is configured?
Thanks for any help!
[N]F
Comment/Reply (w/o sign-up)
Spidey
May 4 2006, 03:50 PM
hello everyone ... who can tell me whoat kind of cable do i hace to use to connect 2 pc`c on lan. i have a stright cable but i have an error(limited or no conectivity) can anyone help me ? thanks a lot
Comment/Reply (w/o sign-up)
evought
May 4 2006, 03:59 PM
QUOTE(Spidey @ May 4 2006, 10:50 AM)  hello everyone ... who can tell me whoat kind of cable do i hace to use to connect 2 pc`c on lan. i have a stright cable but i have an error(limited or no conectivity) can anyone help me ? thanks a lot
Technically, you need a crossover cable, but many new PCs and network cards auto-detect. QUOTE(nightfox @ Mar 27 2006, 08:32 PM)  Hey,
Here's a weird problem I've encountered. On my test server running CentOS and Apache2 w/ the Apache2 Manual installed and accessible from the web, everything seems fine. So I access it via my home network on which the server is located and the manual loads like I'm on a 56K connection. To give you an idea of the speed, it's just a tweak faster than using MySpace during peak hours. MySpace is still slower than my server though. But today at school, I try it and the thing loads like it was on an OC-93 fiber line at a data center!
AND- if I try to FTP into the server on my LAN, it takes forever! But at school when I tried it, it was like FTPing into my site here at Astahost, maybe even faster due to the server having 0 load.
What is up with my network? Or is it the way CentOS/Apache is configured?
Thanks for any help!
[N]F
Other things that can cause that problem: 1) Bad cable, cable too long, or bad interference (too many packet retries slows down link) 2) Too many collisions (probably not a problem on your home network) 3) Too many hubs or switches (If you have hubs/switches stacked too deep, you can have problems) I would guess #1 for a home network: Do you have a really long cable snaking across the house, a bad splice, or a Cat-5 coupler or two in there? If you crimp your own, you may have a bad crimp.
Comment/Reply (w/o sign-up)
miCRoSCoPiC^eaRthLinG
May 4 2006, 04:12 PM
QUOTE(nightfox @ Mar 28 2006, 08:32 AM)  Hey,
Here's a weird problem I've encountered. On my test server running CentOS and Apache2 w/ the Apache2 Manual installed and accessible from the web, everything seems fine. So I access it via my home network on which the server is located and the manual loads like I'm on a 56K connection. To give you an idea of the speed, it's just a tweak faster than using MySpace during peak hours. MySpace is still slower than my server though. But today at school, I try it and the thing loads like it was on an OC-93 fiber line at a data center!
AND- if I try to FTP into the server on my LAN, it takes forever! But at school when I tried it, it was like FTPing into my site here at Astahost, maybe even faster due to the server having 0 load.
What is up with my network? Or is it the way CentOS/Apache is configured?
Thanks for any help!
[N]F
It's got to be some switching/routing or IP resolution issue. Whats the configuration of your home network? What kind of ethernet cards do you use to connect and what's your switch/hub ? Try this for a starter. Goto your CentOS Server and open up the /etc/hosts file. Add the IP of the computer you access your server from and the Windows name of the same machine (assuming this is a windows platform).. save & quit. Example: shell> vi /etc/hosts
10.19.168.50 mymachine_name.mydomain mymachine_name 127.0.0.1 servermachine_name.mydomain servermachine_name localhost.localdomain localhost
As you can see - each in this table, each IP is made to correspond to a variety of NetBIOS/NetBEUI names that your Windows machine might have. I'll use my personal network example.. My windows based development platform is called Developix and my Fedora Core 4 server is named Getafix. My network is configured with the 10.19.168.0/24 subnet. I decided to call my domain as testdomain. This is how my hosts file looks like: 10.19.168.50 developix.testdomain developix 127.0.0.1 getafix.testdomain getafix localhost.localdomain localhost
NOTE: What appears to be a SPACE between each name segment here is actually a TAB character. So instead of pressing the SPACE-BAR you should use the TAB key. Also in the same /etc folder you'll find another file called hosts.allow. Edit that too and add the first three octets of your subnet. Example: shell> vi /etc/hosts.allow
# # hosts.allow This file describes the names of the hosts which are # allowed to use the local INET services, as decided # by the '/usr/sbin/tcpd' server. # ALL: LOCAL, localhost, 10.19.168. ~
Now try to access your server and see if there's any big difference in access speed. Don't ask me why - I couldn't spot the exact reason, but it did massively improve connectivity in my case. I found this experimentally. So I assumed it had to be some IP/domain resolution related issue. Also my FC4 has SELinux installed - this could be it's doing too. Maybe having your own access IPs hardcoded into these files somehow makes access a lot quicker. Try it and let me know. If it acts the same way for you - then my doubts will be confirmed.
Comment/Reply (w/o sign-up)
giantsfanster
May 5 2006, 04:34 AM
QUOTE(Spidey @ May 4 2006, 08:50 AM)  hello everyone ... who can tell me whoat kind of cable do i hace to use to connect 2 pc`c on lan. i have a stright cable but i have an error(limited or no conectivity) can anyone help me ? thanks a lot
isnt it a CROSSOVER cable? and one question- what kind of cable do i need for PoE (power over ethernet)
Comment/Reply (w/o sign-up)
miCRoSCoPiC^eaRthLinG
May 6 2006, 08:20 AM
*BUMP*  so that nightfox takes notice of the solution I posted.. I need to know whether it works out for him too.. then it'll alleviate a lot of doubts.. and I''ll know for sure that the reason I was thinking was indeed the real reason behind this problem.
Comment/Reply (w/o sign-up)
nightfox
May 6 2006, 02:50 PM
QUOTE(miCRoSCoPiC^eaRthLinG @ May 6 2006, 04:20 AM)  *BUMP*  so that nightfox takes notice of the solution I posted.. I need to know whether it works out for him too.. then it'll alleviate a lot of doubts.. and I''ll know for sure that the reason I was thinking was indeed the real reason behind this problem. lol, thanks m^e! It also appears to work on any distro that I launch on my network. Like I had a 333 MHz PII Red Hat 9 machine and it loaded fast when I accessed it via 192.168.1.107 but when I accessed it via my network domain, it's like the request was being sent all around the globe asking every server if they had that file... it was slow like 28K slow... probably less! I'm going to print out a copy of your fix to try it. My server is currently down for some hardware swapping and a fresh Red Hat 9 install. Then I'll give it a test! Anyway, my network is like a slightly smaller version of a enterprise network. It really is. My router has one computer attached, and one cable that runs through my house to my room and from there into my old network hub which I got from my school for free. From there a wireless access point and usually 3-2 PCs will be connected and two connect via the router's access point and/or the other access point (the other one is mainly so I can get a better connection outside need be). But I'm going to go ahead and print out your fix and try it. Thanks, m^e!! To answer your question, giantsfanster, as far as I know any Cat5/5e cable will take PoE. My school just put in a new IP phone system from Cisco and some of the new switches put power through the existing Ethernet wiering to power some of the phones. Of course, not all of the IP phone switches were PoE but it does eliminate power jacks. You also have to be careful with it too. If you use too short of a cable, you could fry the electronics/ethernet card or whatever it is that is using PoE. I found a link for a PoE Injector/Power Supply. They have some technical data that you may be interested in. Here's the link: http://www.hyperlinktech.com/web/ps4820-poe.php. [N]F
Comment/Reply (w/o sign-up)
nightfox
May 6 2006, 11:27 PM
Ok, m^e... it didn't appear to work... except, I'm on a Fedora Core 5 server now. Here's something funny: FTP is blazing fast but HTTP downloads are still VERY sluggish... I modified the files to reflect what you had (changed of course to match my network) and restarted eth0. Sluggish. I'm curious here...hmmm... m^e (or anyone else if you want to), could you check if the following page downloads fast or sluggish? http://xerge.dynamic10.com/ha/You should see a Bess (Smartfilter Bess Edition) blockpage blocking the address "gmail.google.com". For a while, my school was blocking Gmail so I saved the page to show the technology department and to have some fun!  Anyway, whenever I visit it, it feels like I have dial-up again because it downloads so freaking slow! If you want, m^e, I'll post my hosts file and hosts.allow file for you to take a look at and modify. For reference, my network's internal IPs are 192.161.1.100 through 199. The fedora server is 192.168.1.100 and my Windows machine is 192.168.1.101. The server's IP is static, mine isn't because I normally keep my computer always running so when the IP expires after 24 hours, it gets renewed again. Thanks for the help!! [N]F
Comment/Reply (w/o sign-up)
miCRoSCoPiC^eaRthLinG
May 7 2006, 08:25 AM
Cool.. Your page downloaded pretty fast for me. And yeah I saw the funny looking Gmail blocking page  Posts your hosts file and lets see what we can do about it
Comment/Reply (w/o sign-up)
iGuest
Aug 14 2009, 08:48 AM
Slow internet access via wireless
Server Slow On LAN, Fast On The Internet
I have no problem accessing a fast internet connection on my
IMac via an Ethernet cable to my Netgear 8011n Router via a thick wall. However,
My wireless access to the internet on my Mac Powerbook has become desperately
Slow - whether it is placed next to the router on the Netgear network or next to
My iMac via its Airport network. It was all ok initially and was still so even
After I upgraded both machines to Leopard - now access via the Powerbook has
Slowed dramatically by comparison! I don’t recall having changed any settings
On my Powerbook. Anyone any ideas
Please?
-reply by P S G Adams
Comment/Reply (w/o sign-up)
fuji0020
May 5 2009, 11:22 AM
Now try to admission your server and see if there's any big aberration in admission speed. Don't ask me why - I couldn't atom the exact reason, but it did massively advance connectivity in my case. I begin this experimentally. So I affected it had to be some IP/domain resolution accompanying issue. Also my FC4 has SELinux installed - this could be it's accomplishing too. Maybe accepting your own admission IPs hardcoded into these files somehow makes admission a lot quicker. Anyway, my arrangement is like a hardly abate adaptation of a action network. It absolutely is. My router has one computer attached, and one cable that runs through my abode to my allowance and from there into my old arrangement hub which I got from my academy for free. From there a wireless admission point and usually 3-2 PCs will be affiliated and two affix via the router's admission point and/or the added admission point (the added one is mainly so I can get a bigger affiliation alfresco charge be). But I'm traveling to go advanced and book out your fix and try it. _________________ my blog
Comment/Reply (w/o sign-up)
iGuest
Oct 16 2007, 01:04 AM
I'm having a similar problem with an entirely different setup. I'm running Filezilla server on a cable connection with just a linksys between the modem and the computer. When I access my files locally via File and Printer Sharing, they load quickly. When I try to FTP into that system locally, it's very slow. When I access the FTP remotely, however, it's fast. It's very strange. -kevinthenerd
Comment/Reply (w/o sign-up)
t0nedef
Jul 19 2006, 11:24 PM
is your server listening on your lan's local ip address as well as your public ip address, or is it set to a static ip? if your just port forewarding port 80 and port 22 requests from the internet to a private ip address on your lan, then make sure your server is also listening on your lan ip address that it is assigned too, apache can have some real speed issues with requests to an ip it hasn't been told to listen too.... i hope this helps
Comment/Reply (w/o sign-up)
miCRoSCoPiC^eaRthLinG
Jun 4 2006, 10:59 AM
Awesome  Thanks for that bit of info..
Comment/Reply (w/o sign-up)
Similar Topics
Keywords : server, slow, lan, fast, internet
- Problem Setting Up Wireless Internet & Wireless Nintendo Wii
Need some help installing/configuring Wireless (4)
Server With Quest?
(7) I am currently trying to make a server off of my home computer, but I can't get it to work at
all. I have a quest modem and a windows XP computer (which also has Linux and it doesn't even
work with Linux). I can access my server with localhost: just fine but when I try through my router
(for now I will just call it 192.168.0.1) I cannot connect to my server using 192.168.0.1: . My port
is not 80 so that’s not the problem. How would I need to configure my modem so when an
incoming address is read the modem sends the request to a switch then to my computer? ....
Help Me To Download Torrent Via Proxy Internet
Torrent Downloads (3) Hi All, I have a proxy internet connection and i am not able to download any torrent with any kind
of torrent client. I have also configured torrent clients to use my proxy but it never works for me.
My proxy ip is 10.178.3.1 and the port is 8080. Is there any way to connect to torrents for
downloading? If you have any solution with my current internet settings, please let me know.....
Free Remote Wireless Server?
(1) Hi all. I need a free service to manager users and bandwidth to Wireless service to my Town? Anyone
know a site with this options?? Thanks.....
Two Connections For Faster Internet?
(11) When dialup was common, I heard about people connecting two phone lines so it was faster. Could I do
that with broadband, the router delivers 12mbps, but I get about 2.5, and I have a extra cable.....
Extending A Wireless Network
Wireless Internet (2) Usually, to integrate WiFi capabilities into an existing LAN involves interfacing a wireless router
with an existing LAN and configuring it as an access point. If it is meant for free public use, then
it may not be necessary to encrypt the transmission, otherwise it is advisable to encrypt it with at
leas a 64-bit WEP (Wireless Encryption Protocol) key. Depending on the gain in db of the attached
antenna, the radius of wireless coverage can vary from 250meters to close to 450meters. Now comes
the stage where we need to extend the coverage of the wireless transmission, t....
Issues With Accessing The Internet
web addresses vs. ip addresses (11) My ISP is quite special. I have a cable 512k connection from them, but it's shared between 10
users and in addition they won't troubleshoot it for me if i have more than one computer
connected. No wonder the IT infrastructure is 4th rate here. Anyways, my problem is that I
can't open any web page whatsoever. It just returns a page not found. But if i type in the IP
address, the page loads fine. This is something I don't understand much about, and I'm not
getting any help from my service provider for the above mentioned reasons. Is this a software pro....
Internet Connection Sharing Problems
(12) Hello, I am having some trouble setting up Internet Connection Sharing. Here is my setup. My
internet is through a neighbor who is sharing there internet with me wirelessly, so I don't have
any type of broadband modem, just a wireless card on my desktop PC. I have a linksys WRT54G router
connected to the desktop PC and tried following the guidelines for home networking, and works fine,
but no internet connection now. When I unhook my router then my internet connection comes back.
Its as if the computer is looking for internet on my network, and I dont know how t....
[help] Networking A Mac With Pc (file Share & Internet)
(1) Hello Folks, Long time since i last posted here. Anyways, I am having problems or rather having
issues about networking my PC with the MAC at home through a Modem+wireless router. I have been
using a normal DSL modem since i switched to broadband 5 years ago. A Lucent Cell Pipe 20A USB. I
finally decided i needed to change my modem because firstly the drivers werent updated any more and
secondly the product is discontinued. I bought a new Wireless ADSL2 + Modem router. This is what i
was told to buy as i had no idea of what i needed for the upgrade. Its a NETGEAR DG834G....
Apache Server On Xampp
Problems in starting Apache service on xampp (18) Hi... I downloaded and installed the newest version of xampp. But when i try to start the
Apache service it does not get started. The MySql and FileZilla services start without any problem.
But the Apache service does not start. It returns with a message saying Apache service not started
. I tried by stopping the windows firewall but didn't have any luck. If
there is anyone who can help me out here i would be really great full. Thanks in
advance. Nuwan.....
Increase Internet Speed For Win Xp Home
(10) All those Win XP Home users who have looked at the "increase your internet connection by 20%" and
have been disappointed well I have found the answere. The bandwith limiter is a service known as
"bits" or "Background Intelligent Transfer Service". If you disable this your connection will
increase.....
Broadband Modem Sharing
Accessing Internet from 2 computers (11) I like to share our broadband modem and access Internet from the second computer. The 2 computers
are not connected to each other. I am considering setting up a network of these 2 computers using a
wireless access point and 2 wireless network cards. I assume the access point and the braodband
modem will be attached to one of the computers and the other computer will be able to access
Internet through the access point. Is there any other way of sharing the modem eg. using adapters/
extensions, like sharing the telephone line? ....
How To Keep The Internet Out From A Network ?
Using Dlink Giga lan switch, DSL ... see picture (9) So..in the picture below you can see the schematic I made. The internet enters in the first PC thru
the DSL box , and I wanna connect the internet PC with the other PC's with a giga lan speed. For
that I think I will need a second Lan card because the internet PC only has one lan port. Next I use
the Dlink 8 ports Switch. But I don't want the internet go from the internet PC thru the Dlink
and to the other PC's. Because I don't wanna put firewall and stuff on the other PC's.
But maybe with this setup, the internet will just naturally stop at the firs....
Cable Internet Connection Requires Aol To Go Online?
(17) Just took a look at one of my user's computer and found a very strange problem. For some odd
reason, he must sign into AOL in order to use his internet. I would understand if this is required
if he is using AOL as his main connection, but he is using a dedicated cable service line. The same
thing is happening to his other computer (requires him to sign onto AOL first before he can
connect). After playing around with it for a while, Internet Explorer connected without
AOHell's assistance. I made sure AOL was completely signed off and tried a few more websites and....
Can't Connect To Internet In Linux
Driver problem? (8) I am new to linux and just installed Kubuntu. I have windows XP on my master primary hard drive and
Kubuntu is installed on my slave drive. Everything seems to work great except that I cannot connect
to the internet when I boot into Kubuntu (I also tried Ubuntu). I am thinking maybe it has something
to do with ethernet adapter driver. I can connect just fine in windows, so I know that the actual
hardware isn't messed up. Windows uses the driver for Realtek RTL8139/810x Family Ethernet NIC.
I looked through google and help forum threads and it seems others have h....
Share Internet Using Router And Modem That Uses Usb?
(13) Today I was trying to setup shared internet for someone and was having lots of problems with it.
They are using AOL DSL and had their ISP's modem. They have a Linksys router (forgot what
model...WRT something) and I tried almost everything I can think of to no avail. Here is the
problem. The modem connects to the computer using USB ONLY. It has an ethernet adapter in the back
of the modem but it will not work (needs the USB either way). After playing around more for over an
hour, I came to some "conclusion" that the other machines need the modem to be connected via ....
Need Help Configuring The BIND DNS Server
Make it resolving some domains as I want. (7) Please help me with configurating bind dns server. I configured it for internet domain names
resolving (forwarder) and local domains resolver (xxxxx.ds) now I need that dns resolve internet
domain as I want. cs.kuban.tv as 192.168.144.200 instead of 213.132.64.34, I don't know how to
do it. DNS server I forward request to, resolve it as 213.132.64.34. What I should write in config
file? Slackware linux 10.2 / BIND 9. Thanks for all who will reply. /biggrin.gif"
style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" />....
Internet Getting Slower And Slower
(8) Lately, my computer's internet has been getting slower and slower. When I check the connections
established in all my programs, there is my usual programs running. When I test the connection on
another computer, it was also slow. The ping rate between my computer and the router is <1ms, so I
don't think its the router problem. From 500 kb/s, it changed to 300kb/s, 100 kb/s and now its
30kb/s. Could it be a problem with the ISP?....
Free Secondary Dns/backup Name Server
Enterprise Secondary DNS (0) Free Secondary DNS Provider List http://www.gamesaga.net/secondary_dns/ dnsmadeeasy.com
twisted4life.com dnspark.net editdns.net everydns.net ...... ....
Server Behind Router
Works fine to others, but not internally (9) I have an Apache server set up on my computer so that I can test my scripts without uploading them.
The computer connects to the Internet through a wireless router. I can access my server fine by
going to "localhost" (of course), but when I try to access it on any computer in the network by
going to my modem's IP, my router's setup page shows up. However, this problem does not
exist when I do it from a computer outside the network. I have tried forwarding Inbound port 80 to
this computer, but it still doesn't work. I want to see the server's page using ot....
Ics Problem
Gateway stops internet (4) Of all things, and a tribute once again to the absolutely insanely primitive state of technology in
pakistan, my stupid cable modem works fine if it's all by itself, or with very simple ICS
enabled. However: if all i want to do is browse the internet, i can do it from any computer on the
network. But if i want to chat, or use outlook express, i've got to set a gateway on the ICS
computer. And the minute i do that, it shuts off the internet. As soon as i remove the gateway, the
internet browses fine again. It hadn't done this before, up till a couple days ago....
Server Domain (help!)
(5) Ok, for testing my knowledge, I got a free domain "floppydrives.cjb.net" and free DNS service at
ZoneEdit.com. However, when you visit "floppydrives.cjb.net" you're taken to the document root
of "/var/www/html" instead of where I'd like it to go: "/home/user/public_html" I think this is
more of a web issue/server issue, so I apologize if you feel that this is in the wrong forum. If it
is, could a mod move it to where they feel it should go? Thanks! F....
Questions About Setting Up An Internet Server
(14) I'm working on a new comany (Medium buisness) as Computer tecnician. After some weeks of work
i've decided along with my superiors to set a DataServer ( Store Data ) and a Internet server.
Well my first step was to buy a Pentium 4 Dual Core 3.0 with 2Gb Ram and a SATADRIVE with 250 GB.
Now i'm "stuck", because i dont know witch is the best way to set a internet server. I mean the
main objective is a full control of websites access, using a proxy and a repository for Antivirus,
software and other stuff. Well, maybe you with your all experience on this kind of ....
VDSL : Internet Connection
(6) I just came around an interesting article about vdsl, the next generation of connection speed you
can read it here ....
Help, I Can't Make A Server For Teamspeak, Cs, Etc
I need help on getting these games work (8) Ok here's the thing, I'm trying to make a server on counter strike, team speak, warcraft 3,
etc. but it doesn't work. No one can join it. I tried opening all the right ports on my
ROUTER, and port triggering my warcraft 3, but to no avail. Can someone please help me fix my
problem? It's quite annoying and I really really want to play 1v1 against my friends. My
friends also can't make it for some reason, and they tried everything that I did too before.
Any help will be grateful.....
Configure 1st And 2nd Name Server
(4) I configured a dns server formy own use recently, such that I can control everything on dns. There
are two dns server and configured in master-slave master and slave dns server are located in
different location (i.e. different subnet) the master dns will relocate to another data centre soon,
then it may be down for a while. Do Internet people still able to query and resolve my domain name
? against on slave dns server ? I configured primary and secondary name server on the domain
hosting company where primary name server is pointed to master dns server secondary name ....
Setting Up Wireless Internet For Mac Os
(7) Hi, I just got my iMac today and want to set it up to have wireless internet using my DSL Router. I
got a USB Wireless Adapter (for the Mac OS) and installed the drivers for it. Then I restarted and
plugged in the USB adapter. The manual said a flashing icon should be on the upper left, but I
didn't see this. So I went into the Preferences (I think) and found the 802.11b adapter there.
I clicked on it and on the left, chose Create... I left it at Access Point (hope that's
correct) and set it to 26 digits for the password. Currently I'm using 128 bit en....
Apache Server Problems
Can anyone help with these? (5) Hey, I run an apache server using XAMPP (yes I cheated /laugh.gif" style="vertical-align:middle"
emoid=":lol:" border="0" alt="laugh.gif" /> ). XAMPP is supposed to install FileZilla FTP server
software, but mine came up as red (deactivated) on the status checks. Can anyone suggest a possible
cause or recommend some free FTP server software. (Preferably easy-to-setup). Also, I can't
figure out how to chmod files on my server. I suppose if I had FTP support I could do it that way,
but it would be a bit annoying considering I'm a server webmaster lol. I read som....
Broadband Connection Monitoring
....how to password access to internet? (3) So i have 12 computers i just bought, all with XP Pro, and i need to connect 6 of them to the
internet, and not the other 6. but they all need to be on the network. so how do i go about doing
this? i've not recieved clear answers on this from anyone i've asked. how can i prevent some
of the computers from accessing the internet through the always on connection, but permit them to
communicate with each other over the network? is there a program available, or is it possible to do
it simply through the registry and windows settings? any help or advice is much appr....
Internet Through LAN
Internet sharing through Lan (10) "With The Name Allah Almighty , the most beneficient and Merciful." Aslamo Alaikum! All Friends I
have just registered to The Site and im New One here. I hope Best for All of You. Here i m to
discuss with you some thing about Internet sharing on local area network.. I have a network of 10
pcs in my office.. we provide internet facility on 10 systems though a http page logon system.. The
Intenet is provided by a main server running Linux operating system.. All Authentication is done
from that server having ip 10.0.0.1 Other 10 systems get IP's through DHCP as 10.....
Looking for server, slow, lan, fast, internet
|
See Also,
*SIMILAR VIDEOS*
Searching Video's for server, slow, lan, fast, internet
|
advertisement
|
|