asker
asker

Reputation: 2199

How to disable loopback interface in Linux (Fedora)?

So that requests to localhost are treated as if coming from remote host in LAN?

Upvotes: -1

Views: 5572

Answers (1)

Jack Leow
Jack Leow

Reputation: 22487

Have you tried updating your /etc/hosts file, replacing:

127.0.0.1   localhost

With your actual IP address? e.g.,

192.168.0.42    localhost

(This doesn't actually disable the loopback address, you can still connect to 127.0.0.1, but connecting to localhost should come in through your network interface, which I believe is what you're asking)

Upvotes: 0

Related Questions