Code: Select all
\begin{verbatim}
ip xfrm state add src 192.168.77.23 \
dst 192.168.77.24 proto esp spi 0x53fa0fdd \
mode transport reqid 16386 replay-window 32 \
auth "hmac(sha1)" \
0x55f01ac07e15e437115dde0aedd18a822ba9f81e \
enc "cbc(aes)" \
0x6aed4975adf006d65c76f63923a6265b \
sel src 192.168.77.23 dst 192.168.77.24; ip xfrm \
state add src 192.168.77.24 dst 192.168.77.23 \
proto esp spi 0x53fa0fdd mode transport reqid \
16386 replay-window 32 auth "hmac(sha1)" \
0x55f01ac07e15e437115dde0aedd18a822ba9f81e \
enc "cbc(aes)" \
0x6aed4975adf006d65c76f63923a6265b sel src \
192.168.77.24 dst 192.168.77.23; ip xfrm \
policy add dir out src 192.168.77.24 dst \
192.168.77.23 ptype main action allow priority \
2080 tmpl src 192.168.77.24 dst 192.168.77.23 \
proto esp reqid 16386 mode transport; ip xfrm \
policy add dir in src 192.168.77.23 dst \
192.168.77.24 ptype main action allow priority \
2080 tmpl src 192.168.77.23 dst 192.168.77.24 \
proto esp reqid 16386 mode transport
\end{verbatim}
Tried using \listings package but that can only highlight code, I haven't found a way yet to automatically make it fit the page.