Can I make Virtual Host accessible to local network only?

On our web server (with only one interface and IP address), we have two virtual hosts:
-An intranet site which should not be viewed by general public.
-A public website accessible by general public over the internet.
How do I ensure that our web server only serves the intranet site to the local 192.168.0.0/16 network, whilst still allowing anyone to view the public website?

Quick thoughts. You can handle this a few ways. Here are two fast ones.
You can just use the host name and order your virtual hosts public first, private second. Then make sure that the URL for the public site is the only one on you public DNS. For example, if you have two VHs, www.yourdomain.com and wiki.yourdomain.com. Then on the public DNS servers, create a record for the www host only. That way, if the wiki host is entered outside of the environment, it will not resolve to an address. Now if you are using wildcards on the outside, then this may cause some issues and I can not predict this early in the morning if the wildcard would resolve to the primary VH or pass the URL in the header.
So the other option is to modify the directory container within the virtual host file. For example, your VH file has a Directory container that probably looks something like this.
<Directory "/Library/WebServer/Documents">
Options All -Includes -ExecCGI -Indexes +MultiViews
AllowOverride None
<IfModule mod_dav.c>
DAV Off
</IfModule>
</Directory>
And to it the following:
order deny,allow
deny from all
allow from 192.168
This will restrict access the to the 192.168 subnet. Refine it more if needed to 192.168.0 etc.
Hope this helps

Similar Messages

  • Oracle VM 3 - only one virtual host accessible from the network (DELL R410)

    Hi,
    I have installed Oracle VM 3.0.3 and created the network for Virtual hosts. After installing two systems on the server only one is accessible from the network at a time. The second one is not.
    Have no idea how e to enable the second host to reach a network.
    Maby You have some idea?
    Thanks,
    Jarek

    Hello!!
    I'm not an expert but /OVS/Pool should be the directory naming of OVM 2.x, replaced by /OVS/Repositories/REPOS_ID in OVM 3.x
    The "wierd directory name" it's the unique ID that OVM assigns to Repository, infact if you go to VM Manager in Repository tab and edit your current repository you will see this ID: 0004fb0000030000839f2d2faa5014c3
    Under "0004fb0000030000839f2d2faa5014c3" folder, as you noticed, there are the classic folders ISO, VirtualDisk, VirtualMachine, etc. where files are placed.
    I've never tried to import a pre-packaged template from Oracle but I would try importing it as an assembly from http/ftp! ;)
    Hope this helps.
    Greets!

  • How can I sync all files in 2 Macs using local network only?

    I am looking to equip a small office with 2 Macs, iMac and MBAir. I would like for all files to be synced (either automatically, daily, or worst case, on demand). The trick is that this has to be in the local network only, as these are sensitive files. There will be a QNAP NAS on the network as well if it matters.
    Maybe it is possible to setup both Time Machines to look at the same folder on the NAS? Any ideas on how to make this possible?

    Here are three ways to do it. None of the ways is automatic:
    (1) Get an Acrobat.com account, and copy your files via Acrobat.com:
    http://forums.adobe.com/docs/DOC-3440
    (2) If you have a computer with iTunes, and you're syncing your iPad and iPhone to this computer, your PDF files already exist on the computer. In iTunes, select the device. Then go to the Apps folder, scroll down to the File Sharing section and select Adobe Reader. All your PDF files are shown and you can save the ones you want to your computer hard drive. Then import them in a similar way via iTunes.
    (3) Use a Dropbox account. Install Dropbox on both your iPad and iPhone. Copy the PDF files via Dropbox.

  • How can I see the PC on my local network

    How can I see the PC on my local network. With Leopard installed I see the others Mac on the network but ot the PC. But the PC see me. What happen and How I can resolve that.

    Have you tried connecting to the PC via the Finder's "Connect to Server…" and used the IP address?
    It would be smb://server.ip.address/sharename
    Do you have the workgroup set up in the network preferences for the service that you are connected to your LAN with.
    There is also a problem on Leopard where the workgroup doesn't stay set, so if that is the case, you need to duplicate the service (ethernet, airport, etc) and use the duplicate. You can then remove the original.

  • Have a real problem i just can't make a reservation and this is the only way to contact apple . It seams to keep going to the american site .

    have a real problem i just can't make a reservation and this is the only way to contact apple . It seams to keep going to the american site .

    Apple world-wide support numbers are found at: http://support.apple.com/kb/HE57
    If this is regarding your information line that says a stolen iPhone, Apple can do nothing to help you.  You must track the iPhone yourself using iCloud and must have turned on Settings > iCloud > Find My Phone before it was stolen.  If that was not done, there is no way to track the iPhone.
    Report the theft to the police and the cell service provider and ask if they can blacklist the iPhone so it cannot be used.  Change all passwords associated with acconts on the iPhone.

  • How can we make the ms-word data as read-only using java code?

    How can we make the ms-word data as read-only using java code?

    MVSK wrote:
    By using java code i opened a file in ms-word. But the data i want to display as read-only. that means should not change it.I don't think you can do that. Display pdf documents instead.

  • I want to buy an ipad 2 3G but i am not a US resident, how can i get to work on a local network NOT verizon or AT

    i want to buy an ipad 2 3G but i am not a US resident, how can i get to work on a local network NOT verizon or AT&T

    From your screen name would it be safe to guess that you will be using it in Egypt? If your carrier uses is a GSM network you can do as Chris suggests.
    From the Apple page http://www.apple.com/eg/buy/   there is a link to Arab Buisness Machine, they sell the iPad 2 and offer local support should any problems arise.

  • [SOLVED] I can't get virtual hosts working. What's wrong?

    What I've decided to do is try to set up each domain name in the user folder to whom it belongs (for example: /home/username/somedomain.com/htdocs). I can't get it to work though. I keep getting an error saying that there's no index file (although there is) or that the location isn't readable (although it is). I'm trying to make it so that if the domain name matches with a virtual host section in httpd-vhosts.conf that a specific DocumentRoot will be loaded for that domain, etc. But, if the domain name points to my server but doesn't match, then I want the default location to work. I can't seem to make this work.
    This is my http.conf:
    ServerRoot "/etc/httpd"
    Listen 80
    LoadModule authn_file_module modules/mod_authn_file.so
    LoadModule authn_dbm_module modules/mod_authn_dbm.so
    LoadModule authn_anon_module modules/mod_authn_anon.so
    LoadModule authn_dbd_module modules/mod_authn_dbd.so
    LoadModule authn_default_module modules/mod_authn_default.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_user_module modules/mod_authz_user.so
    LoadModule authz_dbm_module modules/mod_authz_dbm.so
    LoadModule authz_owner_module modules/mod_authz_owner.so
    LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    LoadModule authz_default_module modules/mod_authz_default.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    LoadModule auth_digest_module modules/mod_auth_digest.so
    LoadModule file_cache_module modules/mod_file_cache.so
    LoadModule cache_module modules/mod_cache.so
    LoadModule disk_cache_module modules/mod_disk_cache.so
    LoadModule mem_cache_module modules/mod_mem_cache.so
    LoadModule dbd_module modules/mod_dbd.so
    LoadModule dumpio_module modules/mod_dumpio.so
    LoadModule reqtimeout_module modules/mod_reqtimeout.so
    LoadModule ext_filter_module modules/mod_ext_filter.so
    LoadModule include_module modules/mod_include.so
    LoadModule filter_module modules/mod_filter.so
    LoadModule substitute_module modules/mod_substitute.so
    LoadModule deflate_module modules/mod_deflate.so
    LoadModule ldap_module modules/mod_ldap.so
    LoadModule log_config_module modules/mod_log_config.so
    LoadModule log_forensic_module modules/mod_log_forensic.so
    LoadModule logio_module modules/mod_logio.so
    LoadModule env_module modules/mod_env.so
    LoadModule mime_magic_module modules/mod_mime_magic.so
    LoadModule cern_meta_module modules/mod_cern_meta.so
    LoadModule expires_module modules/mod_expires.so
    LoadModule headers_module modules/mod_headers.so
    LoadModule ident_module modules/mod_ident.so
    LoadModule usertrack_module modules/mod_usertrack.so
    LoadModule unique_id_module modules/mod_unique_id.so
    LoadModule setenvif_module modules/mod_setenvif.so
    LoadModule version_module modules/mod_version.so
    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_connect_module modules/mod_proxy_connect.so
    LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
    LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    LoadModule ssl_module modules/mod_ssl.so
    LoadModule mime_module modules/mod_mime.so
    LoadModule dav_module modules/mod_dav.so
    LoadModule status_module modules/mod_status.so
    LoadModule autoindex_module modules/mod_autoindex.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule info_module modules/mod_info.so
    LoadModule suexec_module modules/mod_suexec.so
    LoadModule cgi_module modules/mod_cgi.so
    LoadModule cgid_module modules/mod_cgid.so
    LoadModule dav_fs_module modules/mod_dav_fs.so
    LoadModule vhost_alias_module modules/mod_vhost_alias.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule dir_module modules/mod_dir.so
    LoadModule imagemap_module modules/mod_imagemap.so
    LoadModule actions_module modules/mod_actions.so
    LoadModule speling_module modules/mod_speling.so
    LoadModule userdir_module modules/mod_userdir.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule rewrite_module modules/mod_rewrite.so
    #CUSTOM
    LoadModule php5_module modules/libphp5.so
    <IfModule !mpm_netware_module>
    <IfModule !mpm_winnt_module>
    User http
    Group http
    </IfModule>
    </IfModule>
    ServerAdmin [email protected]
    DocumentRoot "/srv/http/default/htdocs"
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    </Directory>
    <Directory "/srv/http/default/htdocs">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>
    <IfModule dir_module>
    DirectoryIndex index.php,index.html
    </IfModule>
    <FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
    </FilesMatch>
    ErrorLog "/var/log/httpd/error_log"
    LogLevel warn
    <IfModule log_config_module>
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
    # You need to enable mod_logio.c to use %I and %O
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    CustomLog "/var/log/httpd/access_log" common
    </IfModule>
    <IfModule alias_module>
    ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
    </IfModule>
    <IfModule cgid_module>
    #Scriptsock /var/run/httpd/cgisock
    </IfModule>
    <Directory "/srv/http/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    DefaultType text/plain
    <IfModule mime_module>
    TypesConfig conf/mime.types
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    </IfModule>
    # Multi-language error messages
    Include conf/extra/httpd-multilang-errordoc.conf
    # Fancy directory listings
    Include conf/extra/httpd-autoindex.conf
    # Language settings
    Include conf/extra/httpd-languages.conf
    # User home directories
    #Include conf/extra/httpd-userdir.conf
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
    # Virtual hosts
    Include conf/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
    # Various default settings
    Include conf/extra/httpd-default.conf
    #CUSTOM
    Include conf/extra/php5_module.conf
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>
    And here's my httpd-vhosts.conf:
    NameVirtualHost *:80
    <VirtualHost *:80>
    ServerName 45.117.5.40
    ServerAdmin [email protected]
    DocumentRoot "/srv/http/default/htdocs"
    ErrorLog "/srv/http/default/log/error_log"
    CustomLog "/srv/http/default/log/access_log" common
    </VirtualHost>
    <VirtualHost *:80>
    ServerName somedomain.com
    ServerName www.somedomain.com
    ServerAdmin [email protected]
    DocumentRoot "/home/normaluser/somedomain.com/htdocs"
    ErrorLog "/home/normaluser/somedomain.com/log/error_log"
    CustomLog "/home/normaluser/somedomain.com/log/access_log" common
    </VirtualHost>
    So, for example, I want it to be so that if I visit http://45.117.5.40 that it'll show the stuff ftom /srv/http/default/htdocs but if the domain name matches somedomain.com then I want the server to show the content from /home/normaluser/somedomain.com/htdocs.
    What currently happens is that if I visit http://45.117.5.40 or somedomain.com, they both show the same content from /srv/http/default/htdocs.
    If I comment out the first VirtualHost section, then everything stops working and I see the default "Access forbidden!" message.
    What am I doing wrong?
    Last edited by trusktr (2012-04-13 06:15:41)

    I fixed it. In case any newbs come across this, I had to add a new <Directory> section for the DocumentRoot of the virtual host. Simply adding the VirtualHost entry in the vhosts file isn't enough.
    For example, for the "somedomain.com" vhost in the example above to work, I added this to http.conf:
    #This must match with the same location as DocumentRoot in httpd-vhost.conf.
    <Directory "/home/normaluser/somedomain.com/htdocs">
    #Put whatever directives you want in here
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>
    Let me know if you need any clarification.
    Last edited by trusktr (2012-04-13 06:16:02)

  • Tomcat7 fails can not load virtual host directory [solved]

    I have a new installation of timcat7 setup. The default apps work fine.
    I have a virtual host setup in my home directory but tomcat gies the following erro and it does nto work:
    "SEVERE: Application base [/home/doug/Sites/localcity] for host [localcity] does not exist or is not a directory. deployOnStartUp and autoDeploy have been set to false to prevent deployment errors. Other errors may still occur."
    This is an extract of ls -la of ~/Sites
    drwxrwxr-x  2 tomcat tomcat 4096 Apr 25 12:05 localcity
    I have the exact same setup on a different machine and can not see any differences. Any clue as to what I can do get get this host working?
    I am in the group 'tomcat'.
    Last edited by hypoglycemic (2012-06-05 12:41:54)

    I changed back to the dafault host location of webapps with the examples in it to test if it some larger problem than hosts. It looks liek it is becasue thsi is the log output on start up:
    May 26, 2012 3:07:33 PM org.apache.catalina.core.StandardContext postWorkDirectory
    WARNING: Failed to create work directory [/usr/share/tomcat7/work/Catalina/localcity/manager] for context [/manager]
    May 26, 2012 3:07:34 PM org.apache.catalina.util.SessionIdGenerator createSecureRandom
    INFO: Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [741] milliseconds.
    May 26, 2012 3:07:34 PM org.apache.jasper.EmbeddedServletOptions <init>
    SEVERE: The scratchDir you specified: /usr/share/tomcat7/work/Catalina/localcity/manager is unusable.
    May 26, 2012 3:07:34 PM org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploying web application directory /var/lib/tomcat7/webapps/docs
    May 26, 2012 3:07:34 PM org.apache.catalina.core.StandardContext postWorkDirectory
    WARNING: Failed to create work directory [/usr/share/tomcat7/work/Catalina/localcity/docs] for context [/docs]
    May 26, 2012 3:07:34 PM org.apache.jasper.EmbeddedServletOptions <init>
    SEVERE: The scratchDir you specified: /usr/share/tomcat7/work/Catalina/localcity/docs is unusable.
    May 26, 2012 3:07:34 PM org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploying web application directory /var/lib/tomcat7/webapps/host-manager
    May 26, 2012 3:07:34 PM org.apache.catalina.core.StandardContext postWorkDirectory
    WARNING: Failed to create work directory [/usr/share/tomcat7/work/Catalina/localcity/host-manager] for context [/host-manager]
    May 26, 2012 3:07:34 PM org.apache.jasper.EmbeddedServletOptions <init>
    SEVERE: The scratchDir you specified: /usr/share/tomcat7/work/Catalina/localcity/host-manager is unusable.
    May 26, 2012 3:07:34 PM org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploying web application directory /var/lib/tomcat7/webapps/ROOT
    May 26, 2012 3:07:34 PM org.apache.jasper.EmbeddedServletOptions <init>
    SEVERE: The scratchDir you specified: /usr/share/tomcat7/work/Catalina/localcity/_ is unusable.
    May 26, 2012 3:07:34 PM org.apache.catalina.startup.HostConfig deployDirectory
    INFO: Deploying web application directory /var/lib/tomcat7/webapps/examples
    May 26, 2012 3:07:34 PM org.apache.catalina.core.StandardContext postWorkDirectory
    WARNING: Failed to create work directory [/usr/share/tomcat7/work/Catalina/localcity/examples] for context [/examples]
    May 26, 2012 3:07:35 PM org.apache.catalina.core.ApplicationContext log
    INFO: ContextListener: contextInitialized()
    May 26, 2012 3:07:35 PM org.apache.catalina.core.ApplicationContext log
    INFO: SessionListener: contextInitialized()
    May 26, 2012 3:07:35 PM org.apache.jasper.EmbeddedServletOptions <init>
    SEVERE: The scratchDir you specified: /usr/share/tomcat7/work/Catalina/localcity/examples is unusable.
    May 26, 2012 3:07:35 PM org.apache.catalina.core.ApplicationContext log
    INFO: ContextListener: attributeAdded('org.apache.jasper.compiler.TldLocationsCache', 'org.apache.jasper.compiler.TldLocationsCache@6098f192')
    May 26, 2012 3:07:35 PM org.apache.coyote.AbstractProtocol start
    INFO: Starting ProtocolHandler ["http-bio-8080"]
    May 26, 2012 3:07:35 PM org.apache.catalina.startup.Catalina start
    So there is something wrong with the installation itself. I have pacman -R it followed by a -S but the problem remains.
    Is there someway to really super duperly remove the everythign related to tomcat to really truely remove ever trace so that it should rever to normal behaviour?

  • Unable to access hosts from outside local network

    I have set up a few different name-based virtual hosts for a small client. DNS is set up correctly; sites can be accessed internally; everything is working OK.
    However, none of the virtual hosts can be accessed from outside their internal network. I know for a fact that DNS is set up correctly as dig tells me so. Firewall port 80 is open and everything (mail, vpn, etc.) else is working fine.
    I've looked over the httpd config files many times and just can't seem to find anything wrong. Any suggestions on where to look for problems?
    Xserve   Mac OS X (10.4.5)  

    What if you swap out your Apache config for a moment with the default one? Do you have reason to think that it's something in your name-based virtual host settings?
    Can you access a web site from the outside if you only have the default config on there, accessing it maybe via IP address?
    If so, we'll probably need to know more about your virtual host setup in order to troubleshoot this any further, considering you have other services running and accessible on the machine.
    Are you getting any errors? What happens when you try to reach one of the websites? Have you looked at your error log for any of the sites?

  • Cannot resolve host names on local network

    It is a local network with router, few Windows computers with shared drives and one Mac.
    Windows shares appear correctly in SHARED and can be used without any problems, like iTunes and iPhoto libraries are on those shared drives and work properly, even if ip address of those computers would change.
    BUT - if I am trying to use VNC and connect to hostname:port, it says that server is not specified. If I try to ping hostname it says Unknown host.
    At the same time, similar ping from Windows computer work without any problems.
    It could be possible that router does not support something standard and communicates with Windows using something windows-specific, but what confuses me is that I can see computer names resolved in the finder already! Also, as I said iTunes and iPhoto can work with shared files on dynamic ip's which would be not possible if host names would be not resolved.
    Thanks.

    Domain Name Resolution for local IP addresses require a Local DNS server running on your network.
    Bonjour names will resolve without a Local DNS server. So this is why iTunes and iPhoto works as they use bonjour technology.
    A bonjour name ends in .local so in your macs sharing preferences you give the mac a name of imac its bonjour address is imac.local
    Other than that you are best giving your devices fixed IP address and adding there hostnames to your hosts file.
    the contents of /etc/hosts on your mac would look like
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting. Do not change this entry.
    127.0.0.1 localhost
    255.255.255.255 broadcasthost
    ::1 localhost
    fe80::1%lo0 localhost
    so at the above that you could add for example
    192.168.1.5 mypc
    192.168.1.6 myprinter
    Then you could ping 192.168.1.5 by
    ping mypc
    So would have to add these entries to each hosts file on every computer on your lan.
    Or you could setup a local dns server and give each computer on your LAN a fully qualified domain name.

  • Can't access BI 11g server from local network.

    I have a problem..
    Hope someone can tell me the solution.
    I've installed BI Publisher 11g in my server. From the server, I can access it via web browser with URL http://localhost:7001/xmlpserver/servlet/home
    The problem is, when I try to access it from other PC in my local network with URL http://10.11.9.190:7001/xmlpserver/servlet/home, the page fail to show and there's connection timed out error.
    I'm using Windows7 in my server.
    Is there any configuration that I missed?
    Thanks for helping me..

    The best way around firewalls is to stream using port 80. This is a preference setting in QuickTime Streaming Server and QuickTime Broadcaster. This will allow the stream to pass through the hole in the firewall usually used for HTML (web page) traffic. HOWEVER, you cannot use this port if you are also running web server services (Apache) on the same computer/server since they need to use port 80 also. If you need to host a web site AND stream QuickTime using port 80, you will need two computers (or at least two IP addresses; one for each service which is a little tricky. If both services are trying to use port 80, weird things will happen, most often the HTML data will rule and the streams won't work. This has been my experience. Good luck!

  • Can't share audio/video/screen on local network

    My wife and I are both running Leopard 10.5.6, iChat 4.0.7. We're on our local network and can send texts without problem. We can't seem to start video/audio or screen sharing, however. One of us will make the request, and our computer will say "waiting for response", but the other never receives any connection request. Both of us have mic/camera/screen sharing enabled under the Video menu on our respective computers. Any thoughts?

    Hi,
    It depends what you mean in the first place by "Local Network"
    If this is the computers in your home are connected together then we need to know if you are using the Bonjour Buddy List or not.
    Whether it is the Bonjour or AIM (Or Jabber) Buddy list then we need to know what you set up in your Macs and routing device to allow AIM contacts or Bonjour contact.
    For instance in System Preferences > Security > Firewall it has to be set to Allow All or Allow Specific apps and have iChat in the list as iChat is not an Essential App.
    8:14 PM Tuesday; April 28, 2009

  • Can't find computers or drives on local network

    I cannot find any networked computers or harddrives on my local network. I can connect to the internet through my timecapsule, but I cannot access it or any of the other computers (all macs) in the house, either wirelessly or wired. They do not show up under "Network" in finder nor can I ping them.
    The other computers successfully find and mount each other, the timecapsule, and my computer.
    I recently put in new ram; could this be the culprit?
    How do I fix this??
    Thank you very much!

    upgraded to snow-leopard

  • Changing ID of host machine for local network

    I don't have a local network yet I keep getting messages that the OS has changed the identity of my machine in order to allow file sharing!! "FirstName-LastName-.3 has been changed to .4" Nothing seems to change in terms of operation, but it is irritating and I wonder why it's happening. I have "File Sharing" off.

    K T wrote:
    this happens when the system detects a computer by the same name on the same local network.
    It's also happening when there is only one computer....which is apparently the OP's situation as I took it.
    yes, I know. what I meant is that the computer thinks that there is another computer by the same name on the network. it does not mean that there is actually another computer by the same name present, just that your computer thinks there is one for some reason. resetting the router is the first thing to try in such situation.

Maybe you are looking for