mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-25 23:45:56 +03:00
[GH-ISSUE #233] webvirtcloud on Debian 10 (Buster) - IPTables glitch... #156
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/webvirtcloud#156
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @4920441 on GitHub (Apr 6, 2019).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/233
Hi,
after a couple of minutes I installed everything on my test host. The 'admin' accound led into some funny errors, but a newly generated 'superuser' account seems to fix all the auth problems whatsovever....
Generating and editing a guest is now possible, but I am not able to start any virtual network device, because of this error:
Error: internal error: Failed to apply firewall rules /sbin/iptables --table filter --insert INPUT --in-interface virbr0 --protocol tcp --destination-port 67 --jump ACCEPT: iptables v1.8.2 (nf_tables): CHAIN_ADD failed (No such file or directory): chain INPUT
Any hints?
I am also nut sure what is meant by "no such file or directroy"? iptables is accessible .
Cheers,
@catborise commented on GitHub (Apr 6, 2019):
Hi, i think it is not related with webvirtcloud. It could be a bug related with libvirt + iptables
What is your libvirt version(virsh version)
Could you try this command on host. What is the output?
Virsh net-start default
@4920441 commented on GitHub (Apr 7, 2019):
Hi,
thanks for the hint..., do you have a solution anyway? Its the default debian buster deb package...:
virsh version
Compiled against library: libvirt 5.0.0
Using library: libvirt 5.0.0
Using API: QEMU 5.0.0
Running hypervisor: QEMU 3.1.0
virsh net-start default
error: Failed to start network default
error: internal error: Failed to apply firewall rules /sbin/iptables --table filter --insert INPUT --in-interface virbr0 --protocol tcp --destination-port 67 --jump ACCEPT: iptables v1.8.2 (nf_tables): CHAIN_ADD failed (No such file or directory): chain INPUT
@4920441 commented on GitHub (Apr 7, 2019):
For Anyone who has a similiar Problem,
On Debian (10) by default the nf_tables backend is used instead of the xtables backend.
That does not work too well in his constellation, you can back to the old backend by
update-alternatives --set iptables /usr/sbin/iptables-legacy
Cheers,
4920441