2022-10-13 13:11:17 +00:00
|
|
|
-- Retrieves the current status of IP/IPv6 forwarding.
|
|
|
|
--
|
2022-10-19 20:19:53 +00:00
|
|
|
-- tags: postmortem
|
2022-10-13 13:11:17 +00:00
|
|
|
-- platform: posix
|
2022-10-19 20:19:53 +00:00
|
|
|
SELECT
|
2022-10-17 23:06:17 +00:00
|
|
|
*
|
2022-10-19 20:19:53 +00:00
|
|
|
FROM
|
2022-10-17 23:06:17 +00:00
|
|
|
system_controls
|
2022-10-19 20:19:53 +00:00
|
|
|
WHERE
|
2022-10-17 23:06:17 +00:00
|
|
|
oid = '4.30.41.1'
|
2022-10-19 20:19:53 +00:00
|
|
|
UNION
|
|
|
|
SELECT
|
2022-10-17 23:06:17 +00:00
|
|
|
*
|
2022-10-19 20:19:53 +00:00
|
|
|
FROM
|
2022-10-17 23:06:17 +00:00
|
|
|
system_controls
|
2022-10-19 20:19:53 +00:00
|
|
|
WHERE
|
2022-10-17 23:06:17 +00:00
|
|
|
oid = '4.2.0.1';
|