13,420
edits
Changes
no edit summary
! ✓
! ✓
! Hard Disk
! ✓
<ol>
<li value="25">Enable SSH access to your virtual machine with these commands (semi-colon allows commands to be run in sequence):<br /> <code>'''service sshd start; chkconfig sshd on'''</code></li> <li>Find out the IP address of your virtual machine: <code>'''ifconfig eth0'''</code> </li> <li>Enter the following command to reset or "flush" your firewall rules: <code>'''iptables -F'''</code></li><li>Enter the following command on your virtual machine to create a firewall exception to allow ssh traffic into the machine:<br /> <code>'''iptables -I INPUT -p tcp -s0/0 -d0/0 --dport 22 -j ACCEPT'''</code></li> <li>Confirm that you can ssh to your virtual machine from the host (your main Fedora installation): <code>'''ssh ''IPaddress'''''</code> (where IPaddress is your IPV4 (inet) address of your <u>'''host'''</u> machine (ethernet '''em1''' connection).</li>
</ol>