File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed
Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 33
44# packetgen-plugin-ipsec
55
6- ** Warning:** this repository is a work-in-progress. It will be available with packetgen3.
7-
86This is a plugin for [ PacketGen gem] ( https://github.com/sdaubert/packetgen ) . It adds two protocols:
97
108* ` PacketGen::Plugin::ESP ` : IP Encapsulating Security Payload ([ RFC 4303] ( https://tools.ietf.org/html/rfc4303 ) ),
119* ` PacketGen::Plugin::IKE ` : Internet Key Exchange v2 ([ RFC 7296] ( https://tools.ietf.org/html/rfc7296 ) ).
1210
11+ Versions 1.0.x are compatible with PacketGen 3.x.
12+
13+ Versions 1.1.x are compatible with PacketGen 4.x.
14+
1315## Installation
1416
1517Add this line to your application's Gemfile:
@@ -20,11 +22,15 @@ gem 'packetgen-plugin-ipsec'
2022
2123And then execute:
2224
23- $ bundle
25+ ``` bash
26+ bundle
27+ ```
2428
2529Or install it yourself as:
2630
27- $ gem install packetgen-plugin-ipsec
31+ ``` bash
32+ gem install packetgen-plugin-ipsec
33+ ```
2834
2935## Usage
3036
@@ -86,12 +92,12 @@ pkt.to_w
8692
8793## See also
8894
89- API documentation: http://www.rubydoc.info/gems/packetgen-plugin-ipsec
95+ API documentation: < http://www.rubydoc.info/gems/packetgen-plugin-ipsec >
9096
9197## License
9298
9399MIT License (see [ LICENSE] ( https://github.com/sdaubert/packetgen-plugin-ipsec/blob/master/LICENSE ) )
94100
95101## Contributing
96102
97- Bug reports and pull requests are welcome on GitHub at https://github.com/sdaubert/packetgen-plugin-ipsec .
103+ Bug reports and pull requests are welcome on GitHub at < https://github.com/sdaubert/packetgen-plugin-ipsec > .
Original file line number Diff line number Diff line change 88module PacketGen
99 module Plugin
1010 # Version of ipsec plugin
11- IPSEC_VERSION = '1.0.3 '
11+ IPSEC_VERSION = '1.1.0 '
1212 end
1313end
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
1818 end
1919 spec . require_paths = [ 'lib' ]
2020
21- spec . required_ruby_version = '>= 2.5 .0'
21+ spec . required_ruby_version = '>= 3.0 .0'
2222
2323 spec . add_dependency 'packetgen' , '~>4.0'
2424end
You can’t perform that action at this time.
0 commit comments