search for: numgen

Displaying 7 results from an estimated 7 matches for "numgen".

Did you mean: humgen
2016 Dec 19
0
[ANNOUNCE] libnftnl 1.0.7 release
...m. The library libnftnl has been previously known as libnftables. This library is currently used by the nft command line tool. This release includes the following list of updates: * New nftnl_rule_cmp() interface to compare rules. * Support for new kernel expressions: - Number Generator (a.k.a. numgen). - Routing (a.k.a. rt). - Range. - Inverted set lookups. - Inverted dynamic set updates (ie. rule mismatch on full sets). - Packet quota. - Hash. - Forward Information Base lookups (a.k.a. fib). - Reference to stateful objects (requires kernel 4.10-rc). - Notrack. * Allow to add userdata...
2016 Dec 20
0
[ANNOUNCE] nftables 0.7 release
...d 2 map { \ 0 : 192.168.20.100, \ 1 : 192.168.30.100 \ } Another usecase: Set packet marks based on any arbitrary hashing. * Add number generation support. Useful for round-robin packet mark setting, eg. # nft add rule filter prerouting meta mark set numgen inc mod 2 You can also specify an offset to indicate from what value you want to start from. The modulus provides the scale of the counting sequence. You can also use this from maps, eg. # nft add rule nat prerouting \ dnat to numgen inc mod 2 map { 0 : 192.168.10.100, 1 : 192....
2018 Apr 24
2
[Bug 1248] New: The rr-load-balance part doesn't actually work on 0.7
...nee: pablo at netfilter.org Reporter: ian.kumlien at gmail.com This might be known, 0.7 is old - but if it isn't then... ;) I added two rules like this in table nat, chain prerouting (with a hook): iifname $ext_if ip saddr $external_dns_servers tcp dport $external_dns_ports dnat to numgen inc mod 3 map { 0: 10.0.0.2, 1: 10.0.0.3, 2: 10.0.0.4 } iifname $ext_if ip saddr $external_dns_servers udp dport $external_dns_ports dnat to numgen inc mod 3 map { 0: 10.0.0.2, 1: 10.0.0.3, 2: 10.0.0.4 } And they do work, kinda. The idea is to have external slave DNS servers that are seeded from...
2012 May 04
0
LIMMA decideTests result zero from contrast matrix
...ue for my data since toptable output shows Log fold change greater than > 2. I am certain it is a small glitch somewhere at my end that i get zero counts for my summary(decideTests). Please find below my code and i would really appreciate any help here at all. Thanks, Ekta ## R Script ### > numGenes <- nrow(eset) > library(limma) > samples <- c("Un","Un","DMSO10","DMSO10","DMSO5","DMSO5"); > fl <- as.factor(samples) > design <- model.matrix(~ 0+ fl) > colnames(design) <- levels(fl) > fit <- lmFit(...
2019 May 27
0
[ANNOUNCE] libnftnl 1.1.3 release
...-------------- next part -------------- Fernando Fernandez Mancera (1): expr: osf: add version option support Florian Westphal (2): set_elem: close a padding hole src: libnftnl: export genid functions again Laura Garcia Liebana (2): Revert "expr: add map lookups for numgen statements" Revert "expr: add map lookups for hash statements" Pablo Neira Ayuso (2): udata: add NFTNL_UDATA_* definitions build: libnftnl 1.1.3 release Phil Sutter (12): chain: Support per chain rules list chain: Add lookup functions for chain list an...
2020 Apr 01
0
[ANNOUNCE] nftables 0.9.4 release
...add parse and build userdata interface exthdr: add exthdr_desc_id enum and use it exthdr: add parse and build userdata interface socket: add parse and build userdata interface osf: add parse and build userdata interface ct: add parse and build userdata interface numgen: add parse and build userdata interface hash: add parse and build userdata interface rt: add parse and build userdata interface fib: add parse and build userdata interface xfrm: add parse and build userdata interface main: enforce options before commands scanner:...
2017 Oct 12
0
[ANNOUNCE] nftables 0.8 release
...tests: shell: remove nft_set_bitmap on each run include: add tcpopt.h to Makefile.am evaluate: store byteorder for set keys netlink: store set byteorder in NFTA_SET_USERDATA netlink_delinearize: remove integer_type_postprocess() tests: py: fix incorrect bytecode in numgen and hash mappings datatype: add DTYPE_F_CLONE flag evaluate: set byteorder as lhs expression context in stmt_evaluate_arg() src: rename set_keytype_alloc() to set_datatype_alloc() netlink: rework NFTNL_SET_USERDATA to accomodate new attributes src: store byteorder for...