ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Incorporating security into ROS system can be valuable?

asked 2016-02-16 22:27:00 -0500

Lain Iwakura gravatar image

updated 2016-02-17 18:56:11 -0500

Hello, I'm thinking about implementing of authentication, auhorization or encryption between nodes. (I'll use Kerberos authentication by reference to rosauth thesis)

I would like to know if there is a case you'll need it.

I've read the previous posts about security here, and came to a conclusion that it's not needed... Because using VPN and firewall(such as iptables) is simpler way...

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2016-02-17 11:39:22 -0500

dchang0 gravatar image

updated 2016-02-17 21:00:59 -0500

Kerberos is pretty cumbersome in practice. How about simple SSH tunnels using pre-shared key files (like Amazon EC2 does)? (That is the same as VPN, really, so you sort of answered your own question.) You would essentially be using the built-in AAA of Ubuntu's SSHd and extending it to all OS instances in the system.

EDIT:

To answer your question as to whether AAA is needed--leave aside the fact that Ubuntu already provides AAA. Here is a use case where security would be needed.

Let's say we are a company that has built a swarm of security robots (running ROS) that coordinates the patrolling of a mall to prevent terrorist bombings. The swarm includes bomb-sniffing ground robots, and the terrorists need to fool the robots into avoiding the areas where bombs have been placed.

To do so, the terrorists must connect to the swarm as a fake robot, running fake nodes that pretend to be the robots covering the areas where the bombs are placed and that report "all clear" to the other nodes.

In this case, all nodes would have to be secured well enough to guard against spoofing. SSH may not be secure enough for this purpose--once a hacker gets the SSH keys and establishes the tunnel, the traffic between ROS nodes itself is too trusting. It may be necessary, as you suggest, to integrate security into ROS itself.

(I am prepared for people to tear apart this use case and point out why security is or isn't an issue. I don't claim to be a security expert, and this is just a posed use case for the purpose of discussion.)

edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2016-02-16 22:27:00 -0500

Seen: 446 times

Last updated: Feb 17 '16