Stop display of motd on login:

# On the machine of which you don't want to see the banner
$ touch ~/.hushlogin

Stop display of banner on ssh login:

# Method 1:
$ ssh -q targethost

#Method 2:
# Add to .ssh/config:
Host *
  LogLevel Quiet

By karlo