This is a discussion on Disable "computer name" lookup on LAN within the Apache Web Server forums, part of the Web Server and Related Forums category; This seems to be a simple question, but I couldn't find any solution even after googling. How to disable ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
This seems to be a simple question, but I couldn't find any solution
even after googling. How to disable computer name based lookup if all the systems are connected in LAN. For example, http://joe/foo.php . Here one can use the file in system "joe" even from other system say "brown" and vice-versa. Anyway to disable this option? TIA -- | Just another PHP saint | Email: rrjanbiah-at-Y!com |
|
|||
|
On 2004-09-30, R. Rajesh Jeba Anbiah <ng4rrjanbiah@rediffmail.com> wrote:
> How to disable computer name based lookup if all the systems are > connected in LAN. Switch off your DNS. Davide -- When you need a helpline for breakfast cereals, it's time to start thinking about tearing down civilisation and giving the ants a go. --Chris King |
|
|||
|
Davide Bianchi <davideyeahsure@onlyforfun.net> wrote in message news:<slrncln9u0.1hc.davideyeahsure@fogg.onlyforfu n.net>...
> On 2004-09-30, R. Rajesh Jeba Anbiah <ng4rrjanbiah@rediffmail.com> wrote: > > How to disable computer name based lookup if all the systems are > > connected in LAN. > > Switch off your DNS. Forgive my ignorance. Do you mean to disable DNS under TCP/IP settings? If so, that doesn't work (for me). Also, if we do so, wouldn't it affect our internet browsing? I mean, is there anyway to do it under Apache itself? -- | Just another PHP saint | Email: rrjanbiah-at-Y!com |
|
|||
|
answer = you can't as the lan network pc's broadcast the netbios name and would still get to web server.
You could however just listen apache on 127.0.0.1 port 80 and NOTHING Else "R. Rajesh Jeba Anbiah" <ng4rrjanbiah@rediffmail.com> wrote in message news:abc4d8b8.0409300241.34672a56@posting.google.c om... > Davide Bianchi <davideyeahsure@onlyforfun.net> wrote in message news:<slrncln9u0.1hc.davideyeahsure@fogg.onlyforfu n.net>... > > On 2004-09-30, R. Rajesh Jeba Anbiah <ng4rrjanbiah@rediffmail.com> wrote: > > > How to disable computer name based lookup if all the systems are > > > connected in LAN. > > > > Switch off your DNS. > > Forgive my ignorance. Do you mean to disable DNS under TCP/IP > settings? If so, that doesn't work (for me). > > Also, if we do so, wouldn't it affect our internet browsing? I > mean, is there anyway to do it under Apache itself? > > -- > | Just another PHP saint | > Email: rrjanbiah-at-Y!com |
|
|||
|
"Newsgroup Poster" <dont.need@my.address.ok> wrote in message news:<cjgt65$njo$1$8300dec7@news.demon.co.uk>...
> answer = you can't as the lan network pc's broadcast the netbios name > and would still get to web server. > > You could however just listen apache on 127.0.0.1 port 80 and NOTHING > Else Many thanks. I changed Listen 80 to Listen 127.0.0.1:80 Now it seems to do the trick. Thanks. -- | Just another PHP saint | Email: rrjanbiah-at-Y!com |
|
|||
|
:)
"R. Rajesh Jeba Anbiah" <ng4rrjanbiah@rediffmail.com> wrote in message news:abc4d8b8.0410012141.1c393710@posting.google.c om... > "Newsgroup Poster" <dont.need@my.address.ok> wrote in message news:<cjgt65$njo$1$8300dec7@news.demon.co.uk>... > > answer = you can't as the lan network pc's broadcast the netbios name > > and would still get to web server. > > > > You could however just listen apache on 127.0.0.1 port 80 and NOTHING > > Else > > Many thanks. I changed > > Listen 80 > to > Listen 127.0.0.1:80 > > Now it seems to do the trick. Thanks. > > -- > | Just another PHP saint | > Email: rrjanbiah-at-Y!com |