IPSEC: различия между версиями
Материал из noname.com.ua
Перейти к навигацииПерейти к поискуSirmax (обсуждение | вклад) (→Host2) |
Sirmax (обсуждение | вклад) (→Host2) |
||
Строка 38: | Строка 38: | ||
===Host2=== |
===Host2=== |
||
<PRE> |
<PRE> |
||
+ | #!/usr/sbin/setkey -f |
||
+ | |||
+ | flush; |
||
+ | spdflush; |
||
+ | |||
+ | |||
+ | |||
+ | ### infra-sjc01 |
||
+ | |||
+ | add infra-dal06 infra-sjc01 ah 15800 -A hmac-md5 "1234567890123456"; |
||
+ | add infra-sjc01 infra-dal06 ah 24600 -A hmac-md5 "1234567890123456"; |
||
+ | add infra-dal06 infra-sjc01 esp 15801 -E 3des-cbc "1234567890123456fq2aswZE"; |
||
+ | add infra-sjc01 infra-dal06 esp 24601 -E 3des-cbc "XmRVNN9Z1234567890123456"; |
||
+ | |||
+ | spdadd infra-dal06 infra-sjc01 any -P out ipsec |
||
+ | esp/transport//require |
||
+ | ah/transport//require; |
||
+ | |||
+ | spdadd infra-sjc01 infra-dal06 any -P in ipsec |
||
+ | esp/transport//require |
||
+ | ah/transport//require; |
||
</PRE> |
</PRE> |
||
Версия 16:55, 29 октября 2014
IPSEC
У меня нет полного понимания работы IPSEC потому пока просто приведу рабочие конфинги для
- setkey
- openswan
setkey
setkey это такая утилита из ipsec-tools
rpm -qf /usr/sbin/setkey ipsec-tools-0.8.0-25.3.x86_64
Насколько я понимаю все шифрование выполняется ядром а утилита (как iptables или tc) только управляет правилами.
Скорее всего все то же самое можно делать и другими средсвами
Вот пример конфигурации шифрования между 2 хостами
Host 1
#!/usr/sbin/setkey -f flush; spdflush; add infra-dal06 infra-sjc01 ah 15800 -A hmac-md5 "1234567890123456"; add infra-sjc01 infra-dal06 ah 24600 -A hmac-md5 "1234567890123456"; add infra-dal06 infra-sjc01 esp 15801 -E 3des-cbc "1234567890123456fq2aswZE"; add infra-sjc01 infra-dal06 esp 24601 -E 3des-cbc "XmRVNN9Z1234567890123456"; spdadd infra-prod-sjc01 infra-prod-dal06 any -P out ipsec esp/transport//require ah/transport//require; spdadd infra-prod-dal06 infra-prod-sjc01 any -P in ipsec esp/transport//require ah/transport//require;
Host2
#!/usr/sbin/setkey -f flush; spdflush; ### infra-sjc01 add infra-dal06 infra-sjc01 ah 15800 -A hmac-md5 "1234567890123456"; add infra-sjc01 infra-dal06 ah 24600 -A hmac-md5 "1234567890123456"; add infra-dal06 infra-sjc01 esp 15801 -E 3des-cbc "1234567890123456fq2aswZE"; add infra-sjc01 infra-dal06 esp 24601 -E 3des-cbc "XmRVNN9Z1234567890123456"; spdadd infra-dal06 infra-sjc01 any -P out ipsec esp/transport//require ah/transport//require; spdadd infra-sjc01 infra-dal06 any -P in ipsec esp/transport//require ah/transport//require;