SSH is enabled by default only for Raspbian releases before November 2016 but the boot protocol for the ethernet interface is set to DHCP by default so the IP address will be assigned by your router. You can find the open SSH ports on your network using the nmap utility:
nmap -p 22 --open -sV 192.168.1.0/24
You should find your pi listed in the output along with the IP assigned to the pi.
You can change the boot protocol to static and define a static IP address for the pi by editing the ifcfg-eth0 file:
vi /etc/sysconfig/network-scripts/ifcfg-eth0
Then edit the file to suit your needs
DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
NETWORK=192.168.1.0
NETMASK=255.255.255.0
IPADDR=192.168.1.200
GATEWAY=192.168.1.1
ifconfig
). – n.st Apr 29 '14 at 18:11