ssh-console: only enable keepalive option

There was some further discussion on dc0eec8 after it was merged. The
consensus was that it may have gone a bit too far on client connection
restrictions. For example, why add the -I to disconnect a fully working
(but idle) session?

It was also clarified that the -K option enables a keepalive message
every X seconds. The client is disconnected after 3 keepalive timeouts.
Given this, it was agreed to reduce the value from 10 to 5 to give the
client a total of 15 seconds to keep a connection alive.

Tested:
- Loaded on a p10bmc system, connected multiple clients to 2200 and
  2201 and caused extensive traffic in both. No issues found.

Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Change-Id: I83dbda457f0de0a727434614539f5fee8c7c665d
diff --git a/conf/obmc-console-ssh@.service.in b/conf/obmc-console-ssh@.service.in
index 7314756..4091924 100644
--- a/conf/obmc-console-ssh@.service.in
+++ b/conf/obmc-console-ssh@.service.in
@@ -8,7 +8,7 @@
 Environment="DROPBEAR_RSAKEY_DIR=/etc/dropbear"
 EnvironmentFile=/etc/default/dropbear
 EnvironmentFile=-/etc/default/obmc-console-client
-ExecStart=/usr/sbin/dropbear -I 1800 -K 10 -r ${DROPBEAR_RSAKEY_DIR}/dropbear_rsa_host_key -c "/usr/bin/obmc-console-client -c /etc/obmc-console/client.%i.conf" -p %i -F $DROPBEAR_EXTRA_ARGS
+ExecStart=/usr/sbin/dropbear -K 5 -r ${DROPBEAR_RSAKEY_DIR}/dropbear_rsa_host_key -c "/usr/bin/obmc-console-client -c /etc/obmc-console/client.%i.conf" -p %i -F $DROPBEAR_EXTRA_ARGS
 SyslogIdentifier=console-client-%i
 ExecReload=/bin/kill -HUP $MAINPID
 KillMode=process