Hi all,
Installed a fresh install of OpenBSD 6.0 on VMWare workstation and
wanted to run default webserver.
In the messages logs I find the following error:
httpd[23792]: parent: send server: Can't assign requested address
em0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
lladdr 00:0c:29:b3:81:f8
index 1 priority 0 llprio 3
groups: egress
media: Ethernet autoselect (1000baseT full-duplex,master)
status: active
inet 192.168.60.129 netmask 0xffffff00 broadcast 192.168.60.255
In my httpd.conf all I changed was the "ext_addr" Macro, everything else as is.
$ cat /etc/httpd.conf
# $OpenBSD: httpd.conf,v 1.14 2015/02/04 08:39:35 florian Exp $
#
# Macros
#
ext_addr="192.168.60.129"
# A minimal default server
server "default" {
listen on $ext_addr port 80
}
Thank you
Monah