abclinuxu.cz AbcLinuxu.cz itbiz.cz ITBiz.cz HDmag.cz HDmag.cz abcprace.cz AbcPráce.cz
AbcLinuxu hledá autory!
Inzerujte na AbcPráce.cz od 950 Kč
Rozšířené hledání
×
    dnes 17:35 | Nová verze

    Byla vydána (𝕏) nová verze 2025.2 linuxové distribuce navržené pro digitální forenzní analýzu a penetrační testování Kali Linux (Wikipedie). Přehled novinek se seznamem nových nástrojů v oficiálním oznámení na blogu.

    Ladislav Hagara | Komentářů: 0
    dnes 10:33 | Komunita

    Dánské ministerstvo pro digitální záležitosti má v plánu přejít na Linux a LibreOffice [It's FOSS News].

    Ladislav Hagara | Komentářů: 8
    dnes 09:22 | Komunita

    V úterý Google vydal Android 16. Zdrojové kódy jsou k dispozici na AOSP (Android Open Source Project). Chybí (zatím?) ale zdrojové kódy specifické pro telefony Pixel od Googlu. Projekty jako CalyxOS a GrapheneOS řeší, jak tyto telefony nadále podporovat. Nejistá je podpora budoucích Pixelů. Souvisí to s hrozícím rozdělením Googlu (Google, Chrome, Android)?

    Ladislav Hagara | Komentářů: 1
    včera 20:22 | Nová verze

    Byla vydána (𝕏) květnová aktualizace aneb nová verze 1.101 editoru zdrojových kódů Visual Studio Code (Wikipedie). Přehled novinek i s náhledy a videi v poznámkách k vydání. Ve verzi 1.101 vyjde také VSCodium, tj. komunitní sestavení Visual Studia Code bez telemetrie a licenčních podmínek Microsoftu.

    Ladislav Hagara | Komentářů: 0
    včera 10:00 | Komunita

    V Brně na FIT VUT probíhá třídenní open source komunitní konference DevConf.CZ 2025. Vstup je zdarma, nutná je ale registrace. Na programu je celá řada zajímavých přednášek, lightning talků, meetupů a workshopů. Přednášky lze sledovat i online na YouTube kanálu konference. Aktuální dění lze sledovat na Matrixu, 𝕏 nebo Mastodonu.

    Ladislav Hagara | Komentářů: 0
    včera 09:44 | IT novinky

    Vyloučení technologií, které by mohly představovat bezpečnostní riziko pro stát, má umožnit zákon o kybernetické bezpečnosti, který včera Senát schválil spolu s novelami navazujících právních předpisů. Norma, kterou nyní dostane k podpisu prezident, počítá rovněž s prověřováním dodavatelů technologií pro stát. Normy mají nabýt účinnosti od třetího měsíce po jejich vyhlášení ve Sbírce zákonů.

    Ladislav Hagara | Komentářů: 4
    včera 01:11 | Nová verze

    Open source platforma Home Assistant (Demo, GitHub, Wikipedie) pro monitorování a řízení inteligentní domácnosti byla vydána v nové verzi 2025.6.

    Ladislav Hagara | Komentářů: 0
    včera 00:55 | Nová verze

    Po Red Hat Enterprise Linuxu a AlmaLinuxu byl v nové stabilní verzi 10.0 vydán také Rocky Linux. Přehled novinek v poznámkách k vydání.

    Ladislav Hagara | Komentářů: 0
    11.6. 22:55 | Nová verze

    Bylo vydáno Eclipse IDE 2025-06 aneb Eclipse 4.36. Představení novinek tohoto integrovaného vývojového prostředí také na YouTube.

    Ladislav Hagara | Komentářů: 0
    11.6. 22:33 | IT novinky

    Americká filmová studia Walt Disney a Universal Pictures podala žalobu na provozovatele populárního generátoru obrázků pomocí umělé inteligence (AI) Midjourney. Zdůvodňují to údajným porušováním autorských práv. V žalobě podané u federálního soudu v Los Angeles označují firmu za „bezednou jámu plagiátorství“, neboť podle nich bez povolení bezostyšně kopíruje a šíří postavy z filmů jako Star Wars, Ledové království nebo Já, padouch, aniž by do nich investovala jediný cent.

    Ladislav Hagara | Komentářů: 1
    Jaký je váš oblíbený skriptovací jazyk?
     (56%)
     (31%)
     (7%)
     (2%)
     (0%)
     (1%)
     (3%)
    Celkem 259 hlasů
     Komentářů: 16, poslední 8.6. 21:05
    Rozcestník

    Where the de-SNAT actually takes place?

    22.8.2006 09:45 | Přečteno: 1289×

    Následující citace z USENET skupiny gmane.comp.security.firewalls.netfilter.general vysvětluje, proč ne všechny [de-]{S,D}NATované pakety procházejí {PRE,POST}ROUTING řetězcem.

    longraider a écrit :
    >
    > linux-2.6.14.2 with imq patch
    > eth0 - iface where two inet connections are attached
    > eth1 - server
    > eth2 - LAN
    > There is SNAT involved on one net connection. The other conn is for
    > servers, and there is proxy-arp active (at eth0 and eth1).
    >
    > I type:
    > iptables -t nat -A PREROUTING -i eth0 -j LOG
    > And after that, dmesg shows something like that:
    > 17:08:53 IN=eth0 OUT= SRC=some_remote_IP DST=IP_of_the_linux_box
    >
    > Shouldn't be there DST=10.0.0.5 for example (ie. de-SNATed)?
    
    This packet probably does not belong to a SNAT-ed or MASQ-ed connection.
    Actually, with this rule you won't see the return packets belonging to your
    SNAT-ed connection. In short, the 'nat' table chains only see the first packet 
    of a "connection", and only if it has the state NEW (not RELATED). All the 
    subsequent valid packets belonging or related to that connection (state NEW, 
    ESTABLISHED, or RELATED) don't go through theses chains. The action taken by 
    these packets is automatically determined by the NAT operation applied to the 
    first packet and the direction of the packet.
    
    For instance, with this rule :
    iptables -t nat -A POSTROUTING -o eth0 -j SNAT --to 1.2.3.4
    
    The first 'direct' packet of an outgoing connection on eth0 goes through the nat
    POSTROUTING chains and matches this rule, so the SNAT operation is applied.
    Instead of going through the POSTROUTING chain, the subsequent direct packets 
    (in the same direction) of the connection will automatically be applied the
    same SNAT operation. The return packets (in the opposite direction) of the 
    connection will automatically be applied the de-SNAT operation instead of going 
    through the nat PREROUTING chain. By the way, the subsequent packets of the 
    connection don't need to go in or out eth0 (funny, huh ?) to be properly NATed.
    
    > And all that I want to do is ingress queuing using IMQ. I want to fwmark
    > packets according to their de-SNATed destination adress (and some other
    > things also), and then put them into the IMQ ingress queue.
    > I could use the packet matching available in the ingress queue itself
    > (by ip tool), but I don't know if the packets that go into IMQ are
    > de-SNATed or not.
    >
    > So, where the de-SNAT actually takes place?
    
    De-SNAT takes place in the NF_IP_PRE_ROUTING Netfilter hook at the same place as
    the nat PREROUTING chain, after the mangle PREROUTING chain and before the 
    input routing decision.
    
    For DNAT which occured in the PREROUTING chain, de-DNAT takes place in the 
    NF_IP_POST_ROUTING Netfilter hook, at the same place as the nat POSTROUTING 
    chain, after the mangle POSTROUTING chain.
    
    For DNAT which occured in the OUTPUT chain, I observed that de-DNAT takes place 
    in the NF_IP_LOCAL_IN Netfilter hook, after the mangle and filter INPUT chains.
    
    
    > BTW is this diagram correct?
    > http://www.docum.org/docum.org/kptd/
    
    I think so, at least for the pure Netfilter part which matches my own diagram
    http://www.plouf.fr.eu.org/bazar/netfilter/schema_netfilter.txt. I don't know
     about the IMQ and QoS parts.
    
    > I think not, since traversing the magle PREROUTING can't occur
    > simulatenously with de-MASQ.
    
    Incoming packets traverse the mangle PREROUTING chain just before being 
    de-MASQ-ed if needed.
    
    > And is this de-MASQUERADE a de-SNAT also?
    
    Yes. Actually MASQUERADE and SNAT are similar, the only difference being in the 
    choice of the new source address.
    
    De-MASQ and de-SNAT both are destination address rewrite operations, so it is 
    consistent that they take place in the same place as the nat PREROUTING chain 
    which performs DNAT. But keep in mind that they take place *instead* of 
    trversing the nat PREROUTING chain, so you will never see packets being 
    de-MASQ-ed or de-SNAT-ed in any nat chain.
    
           

    Hodnocení: 56 %

            špatnédobré        

    Tiskni Sdílej: Linkuj Jaggni to Vybrali.sme.sk Google Del.icio.us Facebook

    Komentáře

    Vložit další komentář

    22.8.2006 13:52 maleprase | skóre: 28
    Rozbalit Rozbalit vše Re: Where the de-SNAT actually takes place?
    tohle je presne to co sem potreboval vedet

    resil jsem nekolik dni padani cdma. problem byl v tom ze i pres pravidlo -A POSTROUTING -o ppp0 -j MASQUERADE dochazelo k tomu ze se na ppp0 objevovaly sem tam pakety s neprelozenou adresou a modem zavesil.

    zjistil sem ze je to tim ze pakety ve stavu INVALID pres retezec POSTROUTING vubec neprochazi a je tudiz nutne je filtrovat na FORWARDu.
    22.8.2006 15:15 petr_p | skóre: 59 | blog: pb
    Rozbalit Rozbalit vše Re: Where the de-SNAT actually takes place?
    Ja vim, taky mi trvalo, nez jsem na to prisel :-[
    ISSN 1214-1267   www.czech-server.cz
    © 1999-2015 Nitemedia s. r. o. Všechna práva vyhrazena.