Robert Segall wrote:
On Thu, 2008-03-20 at 09:44 -0700, Duane Davis wrote:
  
It doesn't make any difference what I use, 0.0.0.0, an interface address 
or 127.0.0.1, I get the same error.

starting...
line 11: Unknown Listener address "127.0.0.1"

Duane

Calomel wrote:
    
The "Address" must be a real ip address that pound will bind to. "0.0.0.0"
will not work. Perhaps you want to bind to localhost (127.0.0.1) or an
external interface?

  Pound secure reverse proxy "how to"
  http://calomel.org/pound.html

--
 Calomel @ http://calomel.org
 Open Source Research and Reference


On Thu, Mar 20, 2008 at 07:23:16AM -0700, Duane Davis wrote:
  
      
I am trying to get Pound running under Solaris 10 (Sparc). It compiled 
and installed cleanly but won't run.

starting...
line 5: Unknown Listener address "0.0.0.0"

Here's my config
-------------------------------------------------
LogFacility local6
LogLevel 2

ListenHTTP
      Address 0.0.0.0
      Port 80
      xHTTP   0

      Service "mydomain.com"
              HeadRequire "Host:.mydomain.com.*"

              BackEnd
                      Address 10.1.30.132
                     Port    80
              End
      End
End

-------------------------------------------------

I've also tried it with a real listener IP address and a FQDN. PCRE is 
version 7.6.

Any suggestions?
        

The address MUST be resolvable. Try nslookup 127.0.0.1 at the shell
prompt to check on that.
  
It is resolvable
] nslookup 127.0.0.1
Server:         10.1.40.1
Address:        10.1.40.1#53

1.0.0.127.in-addr.arpa  name = localhost.

I've even tried it with one of my real (routable) IPs, which also resolve. Same result.

Duane