Displaying 5 results from an estimated 5 matches for "iface1".
Did you mean:
iface
2015 Jun 28
2
Old and new package version numbers during RPM update
...ror-prone.
>
> why doesn't the config file have the version in it ? not having that
> makes your whole system error prone.
Perhaps I wasn't clear. Version 1 of the package uses a config file that
looks like this:
system {
setting1 value1;
setting2 value2;
}
interfaces {
iface1;
iface2;
}
Version 2 of the package has switched to a YAML-based syntax, so the
config file needs to look like this:
system:
setting1: value1
setting2: value2
So, I need to be able to program the RPM so that when upgrading from 1.x
to 2.x, it triggers the conversion utility that converts...
2006 Aug 14
14
Routing packets over multiple links (NICS) all on the same ISP all with same gateway.
Ok ive been trying to get this to work for about half a year now. Ive
searched all over the internet for a solution for
my problem. Ive found some solutions, but they only led me to yet more
problems.
What we want to do is the following:
I live in a student complex with 7 other people. Every room has its own
internet connection from the same ISP.
Ip, gateway, subnet are asigned through dhcp on
2015 Jun 28
0
Old and new package version numbers during RPM update
...have the version in it ? not having that
>> makes your whole system error prone.
> Perhaps I wasn't clear. Version 1 of the package uses a config file that
> looks like this:
>
> system {
> setting1 value1;
> setting2 value2;
> }
>
> interfaces {
> iface1;
> iface2;
> }
>
>
> Version 2 of the package has switched to a YAML-based syntax, so the
> config file needs to look like this:
>
> system:
> setting1: value1
> setting2: value2
>
>
> So, I need to be able to program the RPM so that when upgrading fr...
2015 Jun 28
5
Old and new package version numbers during RPM update
On 28/06/15 02:17, Joseph L. Casale wrote:
> Your script within the rpm should have the logic. Clearly if
> you know how to update it, you know how to identify if it
> needs updating.
Thanks Joseph. I am aware of this option, but it would be only a last
resort, because checking the format of the config file is error-prone.
I would prefer RPM to tell me the old and new version numbers,
2017 Feb 28
2
[Bug 1125] New: Setting bit mark according to result of lookup
...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 but it is much less clea...