diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-02-02 19:36:31 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-02-02 19:36:31 +0000 |
commit | ae1ffb162fbf2be33c57addfceb2d4122cf35b35 (patch) | |
tree | 534d53376320387721b76dd835edac3c6e1e9138 | |
parent | 17ca552235202c025bf53fe6de79d9bb4e39cbdf (diff) | |
download | pfsense-ae1ffb162fbf2be33c57addfceb2d4122cf35b35.zip pfsense-ae1ffb162fbf2be33c57addfceb2d4122cf35b35.tar.gz |
Disable CTRL+ALT+DELETE reboot sequence on keyboard.
Admnins commonly have to press this sequence to login to winderz boxen and
if you have a shared KVM you might accidently reboot your firewall.
-rw-r--r-- | cf/conf/config.xml | 5 | ||||
-rw-r--r-- | conf.default/config.xml | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/cf/conf/config.xml b/cf/conf/config.xml index 4df2ab2..1564323 100644 --- a/cf/conf/config.xml +++ b/cf/conf/config.xml @@ -95,6 +95,11 @@ <tunable>net.inet.ip.intr_queue_maxlen</tunable> <value>1000</value> </item> + <item> + <desc>Disable CTRL+ALT+Delete reboot from keyboard.</desc> + <tunable>hw.syscons.kbd_reboot</tunable> + <value>1</value> + </item> </sysctl> <system> <optimization>normal</optimization> diff --git a/conf.default/config.xml b/conf.default/config.xml index 2d542a6..0c79932 100644 --- a/conf.default/config.xml +++ b/conf.default/config.xml @@ -95,6 +95,11 @@ <tunable>net.inet.ip.intr_queue_maxlen</tunable> <value>1000</value> </item> + <item> + <desc>Disable CTRL+ALT+Delete reboot from keyboard.</desc> + <tunable>hw.syscons.kbd_reboot</tunable> + <value>1</value> + </item> </sysctl> <system> <optimization>normal</optimization> |