Displaying 2 results from an estimated 2 matches for "iface0".
Did you mean:
iface
2008 Mar 27
0
open-iscsi and bond issue
...bond in active-backup mode.
I had install open-iscsi as initiator to attach an external iscsi san
to my box but open-iscsi didn''t work.
When i run this command:
#iscsiadm -m node -T iqn.2008-03.local.foo:iSCSI.test.disk1 -l
I retrive, after some seconds, this error
Logging in to [iface: iface0, target:
iqn.2008-03.local.foo:iSCSI.test.disk1, portal: 192.168.2.100,3260]
iscsiadm: Could not login to [iface: iface0, target:
iqn.2008-03.local.foo:iSCSI.test.disk1, portal: 192.168.2.100,3260]:
iscsiadm: initiator reported error (8 - connection timed out)
The network connectivity is up, I can...
2017 Feb 28
2
[Bug 1125] New: Setting bit mark according to result of lookup
...Component: nft
Assignee: pablo at netfilter.org
Reporter: uzytkownik2 at gmail.com
I tried to set a mark according to interface it come through. My first attempt
was:
table bridge filter {
map iface_to_mark {
type iface_index: mark
elements = {
iface0: 0x1,
iface1: 0x2,
...
}
}
chain input {
type filter hook input priority 0
mark set mark or iif map @iface_to_mark
}
}
However as RHS of | is not constant it is not allowed. I WAR by vmap jump
depending on interface and inlining constants...