|
|
(5 intermediate revisions not shown) |
Line 1: |
Line 1: |
- | ==Parancs==
| + | #redirect http://hu.net.wikia.com/wiki/Compress |
- | '''compress'''
| + | |
- | ==Mód==
| + | |
- | Router(config-if)#
| + | |
- | ==Szintaxis==
| + | |
- | '''compress''' ''[predictor | stac | mppc [ignore-pfc]]''
| + | |
- | '''no compress''' ''[predictor | stac | mppc [ignore-pfc]]''
| + | |
- | ==Szintaxis leírása==
| + | |
- | ''predictor'' (Opcionális) Specifikálja a predictor kompressziós algoritmus használatát.
| + | |
- | ''stac'' (Opcionális) Specifikálja a Stacker (LZS) kompressziós algoritmus használatát.
| + | |
- | ''mppc'' (Opcionális) Specifikálja az MPPC kompressziós algoritmus használatát.
| + | |
- | ''ignore-pfc'' (Opcionális) Specifies the protocol field compression flag negotiated through LCP will be ignored.
| + | |
- | ==Parancs leírása==
| + | |
- | A szoftveres kompresszálás konfigurálásához Point-to-Point Protocol (PPP) használata esetén a ''compress interface'' parancs használandó. A kompresszió kikapcsolásához a ''no''formulát kell a parancshoz használni.
| + | |
- | | + | |
- | Működési feltételek:
| + | |
- | | + | |
- | A végponti berendezéseket ugyanarra a kompresszálási módba kell kapcsolni. (predictor, Stacker vagy MPPC).
| + | |
- | | + | |
- | Compression reduces the size of frames via lossless data compression. The compression algorithm used is a predictor algorithm (the RAND compression algorithm), which uses a compression dictionary to predict what the next character in the frame will be.
| + | |
- | | + | |
- | PPP encapsulation supports both predictor and Stacker compression algorithms.
| + | |
- | | + | |
- | ''MPPC kompresszió''
| + | |
- | The compress command using the mppc and ignore-pfc options support compression between Cisco routers, access servers, and Microsoft clients such as Windows 95 and Windows NT. MPPC implements an LZ based compression algorithm that uses a compression dictionary to compress PPP packets. The ignore-pfc keyword instructs the router to ignore the protocol field compression flag negotiated by LCP. For example, the uncompressed standard protocol field value for IP is 0x0021 and 0x21 when compression is enabled. When the ignore-pfc option is enabled, the router will continue to use the uncompressed value (0x0021). Using the ignore-pfc option is helpful for some asynchronous driver devices which use an uncompressed protocol field (0x0021), even though the pfc is negotiated between peers. If protocol rejects are displayed when the debug ppp negotiation command is enabled, setting the ignore-pfc option may remedy the problem.
| + | |
- | | + | |
- | Rendszer teljesítmény
| + | |
- | | + | |
- | Compression is accomplished through software and may significantly affect system performance.
| + | |
- | Ha a processzor terhelése meghaladja a 65 %-ot a kompresszálást ki kell kapcsolni.
| + | |
- | To display the CPU load, use the show process cpu EXEC command.
| + | |
- | | + | |
- | A nyilvános hálózat felé a kompresszió bekapcsolása tilos.
| + | |
- | | + | |
- | If the majority of your traffic is already compressed files, we recommend that you not use compression. If the files are already compressed, the additional processing time spent in unsuccessfully attempting to compress them again will slow system performance.
| + | |
- | | + | |
- | ==Példa==
| + | |
- | Az alábbi példa engedélyezi a 0-ás soros interfészen a predictor compressziót:
| + | |
- | Router(config)#interface serial 0
| + | |
- | Router(config-if)#encapsulation ppp
| + | |
- | Router(config-if)#compress predictor
| + | |
- |
| + | |
- | A következőpéldán a 0-ás BRI interfészen a MPPC kompresszió lesz bekapcsolva:
| + | |
- | Router(config)#interface BRI 0
| + | |
- | Router(config-if)#ip unnumbered ethernet 0
| + | |
- | Router(config-if)#encapsulation ppp
| + | |
- | Router(config-if)#isdn spid1 5551234
| + | |
- | Router(config-if)#dialer map ip 172.21.71.74 5551234
| + | |
- | Router(config-if)#dialer-group 1
| + | |
- | Router(config-if)#compress mppc
| + | |
- |
| + | |
- | Példa az aszinkron 1-es interfészen az MPPC bekapcsolására.
| + | |
- | ignore the protocol field compression flag negotiated by LCP:
| + | |
- | | + | |
- | Router(config)#'''interface''' ''async 1''
| + | |
- | Router(config-if)#'''ip unnumbered''' ''ethernet 0''
| + | |
- | Router(config-if)#'''encapsulation''' ''ppp''
| + | |
- | Router(config-if)#'''default routing'''
| + | |
- | Router(config-if)#'''async dynamic routing'''
| + | |
- | Router(config-if)#'''async mode interactive'''
| + | |
- | Router(config-if)#'''peer default ip address''' ''172.21.71.74''
| + | |
- | Router(config-if)#'''compress mppc ignore-pfc'''
| + | |
- | ==Hibalahatőségek==
| + | |
- | A végberendezéseket eltérő kompressziós módba kapcsolva a kapcsolat megszakadhat. Előbb a legtávolabbi berendezést kell átállítani, majd a közelebb esőt.
| + | |
- | ==Lásd még==
| + | |
- | [[encapsulation ppp]]
| + | |
- |
| + | |
- | [[Category:Cisco]]
| + | |