Bootstrapping servers with chef, and changing the SSH PortCygwin, ssh, and git on Windows Server 2008How to automate SSH login with password?Problems bootstrapping Chef from Rubygems on CentOS5.4Rsync and Webmin won't recognize a change in portsIssue with SSH on Ubuntu - Local connection ok, remote connection - Is it me or my ISP?bootstrapping an ubuntu ec2 instance using chef and knifechef node installation help (bootstrapping)Specifying SSH port with Chef, knife bootstrapKnife can't ssh into newly instantiated EC2 serverSSH hardening with chef test-kitchen. How to tell test-kitchen how to connect?

Oil draining out shortly after turbo hose detached/broke

Quasar Redshifts

In The Incredibles 2, why does Screenslaver's name use a pun on something that doesn't exist in the 1950s pastiche?

What does "lit." mean in boiling point or melting point specification?

Is Jesus the last Prophet?

How can powerful telekinesis avoid violating Newton's 3rd Law?

What exactly "triggers an additional time" in the interaction between Afterlife and Teysa Karlov?

What is the STRONGEST end-of-line knot to use if you want to use a steel-thimble at the end, so that you've got a steel-eyelet at the end of the line?

Dedicated bike GPS computer over smartphone

Mathematica 12 has gotten worse at solving simple equations?

How to represent jealousy in a cute way?

Is it true that "only photographers care about noise"?

Why is my power MOSFET heating up when on?

Prove that the infinite series equals 1

Makefile for a simple Debian Repo

Create a cube from identical 3D objects

Dependent voltage/current sources

Are the guests in Westworld forbidden to tell the hosts that they are robots?

How (un)safe is it to ride barefoot?

Why did Robert pick unworthy men for the White Cloaks?

What is the "books received" section in journals?

What is the theme of analysis?

Why do (or did, until very recently) aircraft transponders wait to be interrogated before broadcasting beacon signals?

My mom's return ticket is 3 days after I-94 expires



Bootstrapping servers with chef, and changing the SSH Port


Cygwin, ssh, and git on Windows Server 2008How to automate SSH login with password?Problems bootstrapping Chef from Rubygems on CentOS5.4Rsync and Webmin won't recognize a change in portsIssue with SSH on Ubuntu - Local connection ok, remote connection - Is it me or my ISP?bootstrapping an ubuntu ec2 instance using chef and knifechef node installation help (bootstrapping)Specifying SSH port with Chef, knife bootstrapKnife can't ssh into newly instantiated EC2 serverSSH hardening with chef test-kitchen. How to tell test-kitchen how to connect?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I have a full set of recipes that are working to bootstrap a server at Rackspace, it configures and installs everything as needed. Now, I want to change the default port SSH runs on. This is fairly easy to do, but the question is, how do I tell Knife to use 22 when bootstrapping, but the non standard port when doing everything else on registered nodes?










share|improve this question

















  • 1





    talked with the people in #chef on FreeNode and figured it out. When bootstrapping, I need to pass -c myboostrap.config where i have a setting saying knife[:ssh_port] = '22'

    – Vid Luther
    Jul 20 '11 at 23:46






  • 2





    Add an answer and accept it, so others can learn from your experience.

    – womble
    Jul 20 '11 at 23:53

















1















I have a full set of recipes that are working to bootstrap a server at Rackspace, it configures and installs everything as needed. Now, I want to change the default port SSH runs on. This is fairly easy to do, but the question is, how do I tell Knife to use 22 when bootstrapping, but the non standard port when doing everything else on registered nodes?










share|improve this question

















  • 1





    talked with the people in #chef on FreeNode and figured it out. When bootstrapping, I need to pass -c myboostrap.config where i have a setting saying knife[:ssh_port] = '22'

    – Vid Luther
    Jul 20 '11 at 23:46






  • 2





    Add an answer and accept it, so others can learn from your experience.

    – womble
    Jul 20 '11 at 23:53













1












1








1








I have a full set of recipes that are working to bootstrap a server at Rackspace, it configures and installs everything as needed. Now, I want to change the default port SSH runs on. This is fairly easy to do, but the question is, how do I tell Knife to use 22 when bootstrapping, but the non standard port when doing everything else on registered nodes?










share|improve this question














I have a full set of recipes that are working to bootstrap a server at Rackspace, it configures and installs everything as needed. Now, I want to change the default port SSH runs on. This is fairly easy to do, but the question is, how do I tell Knife to use 22 when bootstrapping, but the non standard port when doing everything else on registered nodes?







ssh chef






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jul 20 '11 at 19:00









Vid LutherVid Luther

695310




695310







  • 1





    talked with the people in #chef on FreeNode and figured it out. When bootstrapping, I need to pass -c myboostrap.config where i have a setting saying knife[:ssh_port] = '22'

    – Vid Luther
    Jul 20 '11 at 23:46






  • 2





    Add an answer and accept it, so others can learn from your experience.

    – womble
    Jul 20 '11 at 23:53












  • 1





    talked with the people in #chef on FreeNode and figured it out. When bootstrapping, I need to pass -c myboostrap.config where i have a setting saying knife[:ssh_port] = '22'

    – Vid Luther
    Jul 20 '11 at 23:46






  • 2





    Add an answer and accept it, so others can learn from your experience.

    – womble
    Jul 20 '11 at 23:53







1




1





talked with the people in #chef on FreeNode and figured it out. When bootstrapping, I need to pass -c myboostrap.config where i have a setting saying knife[:ssh_port] = '22'

– Vid Luther
Jul 20 '11 at 23:46





talked with the people in #chef on FreeNode and figured it out. When bootstrapping, I need to pass -c myboostrap.config where i have a setting saying knife[:ssh_port] = '22'

– Vid Luther
Jul 20 '11 at 23:46




2




2





Add an answer and accept it, so others can learn from your experience.

– womble
Jul 20 '11 at 23:53





Add an answer and accept it, so others can learn from your experience.

– womble
Jul 20 '11 at 23:53










1 Answer
1






active

oldest

votes


















0














This has been in chef since version 0.9.16. You can configure the port by adding the following to your .chef/knife.rb.



knife[:ssh_port] = '22'


Change 22 to the port you want. You don't need to pass -c to the knife bootstrap command if your configuration is in .chef/knife.rb in the current directory.



Ticket for this feature.



Commit for the change.



More information on configuring knife can be found on the Chef wiki:



  • http://wiki.opscode.com/display/chef/Knife

  • http://wiki.opscode.com/display/chef/Knife+Bootstrap





share|improve this answer























  • jtimberman, I saw the knife[:ssh_port] option, but the issue is I change the port to non 22, AFTER the bootstrap, so in knife.rb, I have the non standard port, but in the bootstrap it's still 22. Since the machine boots up at 22. Or maybe I'm not understanding what you're saying? (more than likely :)). Hope to see you or someone from your team at OSCON later this week.

    – Vid Luther
    Jul 24 '11 at 15:34











  • I wouldn't bother with changing the port as setting SSH to run on an alternate port doesn't really increase security. An attacker of any sophistication (or one who wants to find out if you're running vulnerable SSH) is going to scan all the ports available.

    – jtimberman
    Aug 2 '11 at 4:06











  • I'm not changing ports for "security" like that, we're running proftpd with mod_sftp on port 22, and on a non standard port which would be needed for chef, and actual ssh only.

    – Vid Luther
    Aug 3 '11 at 20:03











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f292397%2fbootstrapping-servers-with-chef-and-changing-the-ssh-port%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














This has been in chef since version 0.9.16. You can configure the port by adding the following to your .chef/knife.rb.



knife[:ssh_port] = '22'


Change 22 to the port you want. You don't need to pass -c to the knife bootstrap command if your configuration is in .chef/knife.rb in the current directory.



Ticket for this feature.



Commit for the change.



More information on configuring knife can be found on the Chef wiki:



  • http://wiki.opscode.com/display/chef/Knife

  • http://wiki.opscode.com/display/chef/Knife+Bootstrap





share|improve this answer























  • jtimberman, I saw the knife[:ssh_port] option, but the issue is I change the port to non 22, AFTER the bootstrap, so in knife.rb, I have the non standard port, but in the bootstrap it's still 22. Since the machine boots up at 22. Or maybe I'm not understanding what you're saying? (more than likely :)). Hope to see you or someone from your team at OSCON later this week.

    – Vid Luther
    Jul 24 '11 at 15:34











  • I wouldn't bother with changing the port as setting SSH to run on an alternate port doesn't really increase security. An attacker of any sophistication (or one who wants to find out if you're running vulnerable SSH) is going to scan all the ports available.

    – jtimberman
    Aug 2 '11 at 4:06











  • I'm not changing ports for "security" like that, we're running proftpd with mod_sftp on port 22, and on a non standard port which would be needed for chef, and actual ssh only.

    – Vid Luther
    Aug 3 '11 at 20:03















0














This has been in chef since version 0.9.16. You can configure the port by adding the following to your .chef/knife.rb.



knife[:ssh_port] = '22'


Change 22 to the port you want. You don't need to pass -c to the knife bootstrap command if your configuration is in .chef/knife.rb in the current directory.



Ticket for this feature.



Commit for the change.



More information on configuring knife can be found on the Chef wiki:



  • http://wiki.opscode.com/display/chef/Knife

  • http://wiki.opscode.com/display/chef/Knife+Bootstrap





share|improve this answer























  • jtimberman, I saw the knife[:ssh_port] option, but the issue is I change the port to non 22, AFTER the bootstrap, so in knife.rb, I have the non standard port, but in the bootstrap it's still 22. Since the machine boots up at 22. Or maybe I'm not understanding what you're saying? (more than likely :)). Hope to see you or someone from your team at OSCON later this week.

    – Vid Luther
    Jul 24 '11 at 15:34











  • I wouldn't bother with changing the port as setting SSH to run on an alternate port doesn't really increase security. An attacker of any sophistication (or one who wants to find out if you're running vulnerable SSH) is going to scan all the ports available.

    – jtimberman
    Aug 2 '11 at 4:06











  • I'm not changing ports for "security" like that, we're running proftpd with mod_sftp on port 22, and on a non standard port which would be needed for chef, and actual ssh only.

    – Vid Luther
    Aug 3 '11 at 20:03













0












0








0







This has been in chef since version 0.9.16. You can configure the port by adding the following to your .chef/knife.rb.



knife[:ssh_port] = '22'


Change 22 to the port you want. You don't need to pass -c to the knife bootstrap command if your configuration is in .chef/knife.rb in the current directory.



Ticket for this feature.



Commit for the change.



More information on configuring knife can be found on the Chef wiki:



  • http://wiki.opscode.com/display/chef/Knife

  • http://wiki.opscode.com/display/chef/Knife+Bootstrap





share|improve this answer













This has been in chef since version 0.9.16. You can configure the port by adding the following to your .chef/knife.rb.



knife[:ssh_port] = '22'


Change 22 to the port you want. You don't need to pass -c to the knife bootstrap command if your configuration is in .chef/knife.rb in the current directory.



Ticket for this feature.



Commit for the change.



More information on configuring knife can be found on the Chef wiki:



  • http://wiki.opscode.com/display/chef/Knife

  • http://wiki.opscode.com/display/chef/Knife+Bootstrap






share|improve this answer












share|improve this answer



share|improve this answer










answered Jul 24 '11 at 3:18









jtimbermanjtimberman

6,87823041




6,87823041












  • jtimberman, I saw the knife[:ssh_port] option, but the issue is I change the port to non 22, AFTER the bootstrap, so in knife.rb, I have the non standard port, but in the bootstrap it's still 22. Since the machine boots up at 22. Or maybe I'm not understanding what you're saying? (more than likely :)). Hope to see you or someone from your team at OSCON later this week.

    – Vid Luther
    Jul 24 '11 at 15:34











  • I wouldn't bother with changing the port as setting SSH to run on an alternate port doesn't really increase security. An attacker of any sophistication (or one who wants to find out if you're running vulnerable SSH) is going to scan all the ports available.

    – jtimberman
    Aug 2 '11 at 4:06











  • I'm not changing ports for "security" like that, we're running proftpd with mod_sftp on port 22, and on a non standard port which would be needed for chef, and actual ssh only.

    – Vid Luther
    Aug 3 '11 at 20:03

















  • jtimberman, I saw the knife[:ssh_port] option, but the issue is I change the port to non 22, AFTER the bootstrap, so in knife.rb, I have the non standard port, but in the bootstrap it's still 22. Since the machine boots up at 22. Or maybe I'm not understanding what you're saying? (more than likely :)). Hope to see you or someone from your team at OSCON later this week.

    – Vid Luther
    Jul 24 '11 at 15:34











  • I wouldn't bother with changing the port as setting SSH to run on an alternate port doesn't really increase security. An attacker of any sophistication (or one who wants to find out if you're running vulnerable SSH) is going to scan all the ports available.

    – jtimberman
    Aug 2 '11 at 4:06











  • I'm not changing ports for "security" like that, we're running proftpd with mod_sftp on port 22, and on a non standard port which would be needed for chef, and actual ssh only.

    – Vid Luther
    Aug 3 '11 at 20:03
















jtimberman, I saw the knife[:ssh_port] option, but the issue is I change the port to non 22, AFTER the bootstrap, so in knife.rb, I have the non standard port, but in the bootstrap it's still 22. Since the machine boots up at 22. Or maybe I'm not understanding what you're saying? (more than likely :)). Hope to see you or someone from your team at OSCON later this week.

– Vid Luther
Jul 24 '11 at 15:34





jtimberman, I saw the knife[:ssh_port] option, but the issue is I change the port to non 22, AFTER the bootstrap, so in knife.rb, I have the non standard port, but in the bootstrap it's still 22. Since the machine boots up at 22. Or maybe I'm not understanding what you're saying? (more than likely :)). Hope to see you or someone from your team at OSCON later this week.

– Vid Luther
Jul 24 '11 at 15:34













I wouldn't bother with changing the port as setting SSH to run on an alternate port doesn't really increase security. An attacker of any sophistication (or one who wants to find out if you're running vulnerable SSH) is going to scan all the ports available.

– jtimberman
Aug 2 '11 at 4:06





I wouldn't bother with changing the port as setting SSH to run on an alternate port doesn't really increase security. An attacker of any sophistication (or one who wants to find out if you're running vulnerable SSH) is going to scan all the ports available.

– jtimberman
Aug 2 '11 at 4:06













I'm not changing ports for "security" like that, we're running proftpd with mod_sftp on port 22, and on a non standard port which would be needed for chef, and actual ssh only.

– Vid Luther
Aug 3 '11 at 20:03





I'm not changing ports for "security" like that, we're running proftpd with mod_sftp on port 22, and on a non standard port which would be needed for chef, and actual ssh only.

– Vid Luther
Aug 3 '11 at 20:03

















draft saved

draft discarded
















































Thanks for contributing an answer to Server Fault!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f292397%2fbootstrapping-servers-with-chef-and-changing-the-ssh-port%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company