I have a scalix 11.0.1 running in OSS 10.1 now I would like to update to 11.0.4. But while installation checks the system I get:
Code: Select all
Network check failed -- (1, 'Operation not permitted')
The debug logfile shows:
Code: Select all
2007-06-04 13:16:22,051 INFO Network interface is eth0:scalix
2007-06-04 13:16:22,053 DEBUG Checking DHCP for interface eth0:scalix
2007-06-04 13:16:22,232 DEBUG Found IPs: ['192.168.100.12'] (scalix.domain.local)
2007-06-04 13:16:22,234 ERROR Operation failed: Network check failed -- (1, 'Operation not permitted')
In this forum I found this code:
Code: Select all
import socket
s = socket.socket(socket.AF_PACKET,socket.SOCK_RAW)
s.bind(("eth0:scal", 9999))
mac = s.getsockname()[-1]
s.close()
print ":".join(["%02x" % ord(x) for x in mac])
which should be the code used for this check. and by running this code with
Code: Select all
python test.py
But I don't have any idea how to solve this problem.
Has anybody an idea how to solve it?
Many thanks
Martin