junoser 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/example/vsrx-12.1.x47.rb +5 -2
- data/lib/junoser/parser.rb +5 -2
- data/lib/junoser/transformer.rb +4 -0
- data/lib/junoser/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b0ad65838e180e1d1d604e24e6778a64769d20f7
|
|
4
|
+
data.tar.gz: 490a82d437ef85aa3d491e99304c128695584649
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1158c04d561b57ed319ad29201a5cccc96751c6a1594adae4d834ec3045df82dd8b10d2e19622e394dc0f94487bf6f366f510e09175ca21077b9143098a2ca5b
|
|
7
|
+
data.tar.gz: a13fb62da4901c2783d782e44422868628be632c045b05e564a2cc243e13b8ca5ba1ea5956221a10fbacf9c5e740c02fed43917b57b04cad8da4fce2f6e6ad16
|
data/example/vsrx-12.1.x47.rb
CHANGED
|
@@ -30330,7 +30330,9 @@ rule(:juniper_system) do
|
|
|
30330
30330
|
"root-login" arg,
|
|
30331
30331
|
c(
|
|
30332
30332
|
"tcp-forwarding",
|
|
30333
|
-
"no-tcp-forwarding"
|
|
30333
|
+
"no-tcp-forwarding",
|
|
30334
|
+
"no-passwords",
|
|
30335
|
+
"no-public-keys"
|
|
30334
30336
|
),
|
|
30335
30337
|
"protocol-version" arg,
|
|
30336
30338
|
"max-sessions-per-connection" arg,
|
|
@@ -30360,7 +30362,8 @@ rule(:juniper_system) do
|
|
|
30360
30362
|
)
|
|
30361
30363
|
),
|
|
30362
30364
|
"connection-limit" arg,
|
|
30363
|
-
"rate-limit" arg
|
|
30365
|
+
"rate-limit" arg,
|
|
30366
|
+
"authentication-order" any
|
|
30364
30367
|
)
|
|
30365
30368
|
),
|
|
30366
30369
|
"telnet" (
|
data/lib/junoser/parser.rb
CHANGED
|
@@ -30136,7 +30136,9 @@ module Junoser
|
|
|
30136
30136
|
a(str("root-login"), arg),
|
|
30137
30137
|
c(
|
|
30138
30138
|
str("tcp-forwarding"),
|
|
30139
|
-
str("no-tcp-forwarding")
|
|
30139
|
+
str("no-tcp-forwarding"),
|
|
30140
|
+
str("no-passwords"),
|
|
30141
|
+
str("no-public-keys")
|
|
30140
30142
|
),
|
|
30141
30143
|
a(str("protocol-version"), arg),
|
|
30142
30144
|
a(str("max-sessions-per-connection"), arg),
|
|
@@ -30166,7 +30168,8 @@ module Junoser
|
|
|
30166
30168
|
)
|
|
30167
30169
|
),
|
|
30168
30170
|
a(str("connection-limit"), arg),
|
|
30169
|
-
a(str("rate-limit"), arg)
|
|
30171
|
+
a(str("rate-limit"), arg),
|
|
30172
|
+
a(str("authentication-order"), any)
|
|
30170
30173
|
)
|
|
30171
30174
|
),
|
|
30172
30175
|
b(str("telnet"),
|
data/lib/junoser/transformer.rb
CHANGED
data/lib/junoser/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: junoser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shintaro Kojima
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-02-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: parslet
|