w4sp-book / w4sp-lab

Lab environment for the Wireshark for Security Professionals book
https://github.com/w4sp-book/w4sp-lab/wiki/Lab-Installation
71 stars 42 forks source link

Service network manager start error #70

Closed danylux79 closed 3 years ago

danylux79 commented 3 years ago

hello i have modified all the file suggested, but at the end i receive this error:

['docker', 'build', '-t', 'w4sp/labs:elk', 'elk'] ['docker', 'build', '-t', 'w4sp/labs:switch', 'switch'] ['docker', 'build', '-t', 'w4sp/labs:ftp_tel', 'ftp_tel'] ['docker', 'ps', '-aq', '--filter', 'label=w4sp=true'] ['ifconfig', '-a'] ['ip', 'link', 'delete', b'eth0:'] RTNETLINK answers: Operation not supported ['ip', 'link', 'delete', b'lo:'] RTNETLINK answers: Operation not supported ['ip', 'netns'] ['pkill', 'dhclient'] ['ifconfig', '-a'] ['service', 'network-manager', 'start'] Failed to start network-manager.service: Unit network-manager.service not found. Traceback (most recent call last): File "w4sp_webapp.py", line 521, in w4sp.docker_clean() File "/home/w4sp-lab/Downloads/w4sp-lab-master/w4sp_app/utils.py", line 146, in docker_clean r('service network-manager start') File "/home/w4sp-lab/Downloads/w4sp-lab-master/w4sp_app/utils.py", line 83, in r return subprocess.check_output(cmd) File "/usr/lib/python3.8/subprocess.py", line 411, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, File "/usr/lib/python3.8/subprocess.py", line 512, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['service', 'network-manager', 'start']' returned non-zero exit status 5. w4sp-lab@kali:~/Downloads/w4sp-lab-master$

can you help me? Thanks

RikyTes commented 3 years ago

Hi,

I had the same problem with kali 2020 and i solved it in this way:

In "/home/w4sp-lab/Downloads/w4sp-lab-master/w4sp_app/utils.py" change line 146: r('service network-manager start') with r('service NetworkManager start')

It should work

RikyTes commented 3 years ago

I forgot one more thing:

In "/home/w4sp-lab/Downloads/w4sp-lab-master/w4asp.py" change line 109: r('service network-manager stop') with r('service NetworkManager stop')

danylux79 commented 3 years ago

Hello , many thanks for your answer. i receive the same error i think that on my kali there is no service with name NetworkManager , it's possible? how can install it?

RTNETLINK answers: Operation not supported ['ip', 'link', 'delete', b'lo:'] RTNETLINK answers: Operation not supported ['ip', 'netns'] ['pkill', 'dhclient'] ['ifconfig', '-a'] ['service', 'networkmanager', 'start'] Failed to start networkmanager.service: Unit networkmanager.service not found. Traceback (most recent call last): File "w4sp_webapp.py", line 521, in w4sp.docker_clean() File "/home/w4sp-lab/Downloads/w4sp-lab-master/w4sp_app/utils.py", line 146, in docker_clean r('service networkmanager start') File "/home/w4sp-lab/Downloads/w4sp-lab-master/w4sp_app/utils.py", line 83, in r return subprocess.check_output(cmd) File "/usr/lib/python3.8/subprocess.py", line 411, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, File "/usr/lib/python3.8/subprocess.py", line 512, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['service', 'networkmanager', 'start']' returned non-zero exit status 5.

danylux79 commented 3 years ago

OK , sorry but i forgot that i need to use case sensitive letter. now seems to be work. i can close the issue

danylux79 commented 3 years ago

issue solved many thanks