How can Jenkins on Linux do builds to Windows servers securely without A.D.?How do you add a Windows environment variable without rebooting?Jenkins (Windows Service) with Git over SSHSVN from linux to windowspublish over ssh jenkinsManaging Linux server from PowerShell using built-in credentialsWindows Remote Management Over Untrusted DomainsHow do I get Jenkins running on Linux to communicate with Windows servers?Is there a way to change the java JRE a linux Jenkins server uses?Access a linux server without being on the sudoers fileWindows Admin Center Doesn't Connect

Why do some games show lights shine through walls?

Why cruise at 7000' in an A319?

Are Finite Automata Turing Complete?

Content builder HTTPS

Find smallest index that is identical to the value in an array

A player is constantly pestering me about rules, what do I do as a DM?

Should I tell my insurance company I'm making payments on my new car?

Counting occurrence of words in table is slow

Declining an offer to present a poster instead of a paper

STM Microcontroller burns every time

Intuitively, why does putting capacitors in series decrease the equivalent capacitance?

How to get cool night-vision without lame drawbacks?

MH370 blackbox - is it still possible to retrieve data from it?

Alphabet completion rate

Is there a maximum distance from a planet that a moon can orbit?

Are there any vegetarian astronauts?

How often can a PC check with passive perception during a combat turn?

Swapping rooks in a 4x4 board

Singing along to guitar chords (harmony)

How many codes are possible?

How to perform Login Authentication at the client-side?

Why does the numerical solution of an ODE move away from an unstable equilibrium?

Should my manager be aware of private LinkedIn approaches I receive? How to politely have this happen?

Does image quality of the lens affect "focus and recompose" technique?



How can Jenkins on Linux do builds to Windows servers securely without A.D.?


How do you add a Windows environment variable without rebooting?Jenkins (Windows Service) with Git over SSHSVN from linux to windowspublish over ssh jenkinsManaging Linux server from PowerShell using built-in credentialsWindows Remote Management Over Untrusted DomainsHow do I get Jenkins running on Linux to communicate with Windows servers?Is there a way to change the java JRE a linux Jenkins server uses?Access a linux server without being on the sudoers fileWindows Admin Center Doesn't Connect






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am running Jenkins 1.6 on CentOS 7.2. I have several Windows 2012 servers without A.D. I connect to the Windows machines with local credentials. I have configured a development environment with Python and WinRM on the Linux server. For production my configuration will not work because WinRM is not encrypted.



How do I securely have Jenkins initiate builds on Windows machines without A.D.? I think my requirement of not having A.D. rules out Kerberos. (This link says that both the Linux and Windows servers must be part of the domain. I read elsewhere that it is inadvisable to join a Linux server to an A.D. domain.) I think the only solution would be to use encryption. But how do I do this?



On the Windows server that I set up with Jenkins, I tried to harden it to simulate production requirements: I used this command (from a command prompt opened as Administrator):



winrm set winrm/config/service @AllowUnencrypted="false"


But this made my Jenkins builds brake with an error like this:




winrm.exceptions.UnauthorizedError: 401 Unauthorized




My Jenkins builds use Python scripts with the authentication hard coded in them. I cannot have plaintext passwords in production.



If there is not a way to encrypt WinRM from the Linux/Jenkins server without A.D., what are my options for Jenkins pushing builds (running PowerShell commands) in a secure way in production?



Edit 8/16/16: I tried a different method without winrm. I set up SSH between the Linux server with Jenkins and the Windows servers.



How do I enter SSH credentials in Jenkins to do builds on other servers? The connection aspects should be about the same as a Linux server with Jenkins managing builds on other Linux servers as my Windows servers have OpenSSH. I do want to invoke a PowerShell script on the Windows server. Here is what I tried.



In the Jenkins UI, I go to the home page, then to Manage Credentials -> Configure System -> SSH Remote hosts. I click Add server and enter an IP address for the hostname. For the port I use 22. For the username I use gooduser. From the Linux back end of this Jenkins server, I can use gooduser to login via SSH to the Windows server that I entered in Jenkins. So I know the credentials work. I know port 22 is not blocked. But in the Jenkins web UI, I get "Can't connect to server" underneath the username field.



I tried not using a passphrase but pointing the keyfile to a location on the Linux server. I tried this with and without a password. I kept getting "Can't connect to server." Why I am getting this?



I tried adding additional servers beneath. I entered at least a hostname, a username, and a password. I click apply or save. I then click somewhere else in the web UI. But when I go back to SSH Hosts, all the subsequent server credentials are gone. Only the top, first SSH server's settings remain. Why do they go away? The button allows for new fields to appear. The button says "SSH sites that projects will want to connect." What does that mean?










share|improve this question
























  • PyWinRM will perfectly handle encrypted connections. Make sure you have the correct credentials. 401 means that the credentials could not be verified.

    – Michael Hampton
    Aug 10 '16 at 0:28











  • I made sure the credentials worked. My Jenkins build worked until I changed the AllowUnencrypted setting on the Windows sever. So I know the credentials worked. Does PyWinRM have a way of encrypting connections without A.D.? I thought Kerberos needed A.D.

    – Kiran
    Aug 11 '16 at 0:01











  • It uses TLS like any secure web server. You didn't read the PyWinRM documentation?

    – Michael Hampton
    Aug 11 '16 at 0:42











  • I read PyWinRM documentation. I think this [article](ramblingcookiemonster.github.io/Cross-Platform-PowerShell-Remoting/) contradicts your statement about TLS. Which document are you referring to? I want PyWinRM to be encrypt the credentials when they are transmitted to the Windows server. But how do I do this?

    – Kiran
    Aug 12 '16 at 0:16

















0















I am running Jenkins 1.6 on CentOS 7.2. I have several Windows 2012 servers without A.D. I connect to the Windows machines with local credentials. I have configured a development environment with Python and WinRM on the Linux server. For production my configuration will not work because WinRM is not encrypted.



How do I securely have Jenkins initiate builds on Windows machines without A.D.? I think my requirement of not having A.D. rules out Kerberos. (This link says that both the Linux and Windows servers must be part of the domain. I read elsewhere that it is inadvisable to join a Linux server to an A.D. domain.) I think the only solution would be to use encryption. But how do I do this?



On the Windows server that I set up with Jenkins, I tried to harden it to simulate production requirements: I used this command (from a command prompt opened as Administrator):



winrm set winrm/config/service @AllowUnencrypted="false"


But this made my Jenkins builds brake with an error like this:




winrm.exceptions.UnauthorizedError: 401 Unauthorized




My Jenkins builds use Python scripts with the authentication hard coded in them. I cannot have plaintext passwords in production.



If there is not a way to encrypt WinRM from the Linux/Jenkins server without A.D., what are my options for Jenkins pushing builds (running PowerShell commands) in a secure way in production?



Edit 8/16/16: I tried a different method without winrm. I set up SSH between the Linux server with Jenkins and the Windows servers.



How do I enter SSH credentials in Jenkins to do builds on other servers? The connection aspects should be about the same as a Linux server with Jenkins managing builds on other Linux servers as my Windows servers have OpenSSH. I do want to invoke a PowerShell script on the Windows server. Here is what I tried.



In the Jenkins UI, I go to the home page, then to Manage Credentials -> Configure System -> SSH Remote hosts. I click Add server and enter an IP address for the hostname. For the port I use 22. For the username I use gooduser. From the Linux back end of this Jenkins server, I can use gooduser to login via SSH to the Windows server that I entered in Jenkins. So I know the credentials work. I know port 22 is not blocked. But in the Jenkins web UI, I get "Can't connect to server" underneath the username field.



I tried not using a passphrase but pointing the keyfile to a location on the Linux server. I tried this with and without a password. I kept getting "Can't connect to server." Why I am getting this?



I tried adding additional servers beneath. I entered at least a hostname, a username, and a password. I click apply or save. I then click somewhere else in the web UI. But when I go back to SSH Hosts, all the subsequent server credentials are gone. Only the top, first SSH server's settings remain. Why do they go away? The button allows for new fields to appear. The button says "SSH sites that projects will want to connect." What does that mean?










share|improve this question
























  • PyWinRM will perfectly handle encrypted connections. Make sure you have the correct credentials. 401 means that the credentials could not be verified.

    – Michael Hampton
    Aug 10 '16 at 0:28











  • I made sure the credentials worked. My Jenkins build worked until I changed the AllowUnencrypted setting on the Windows sever. So I know the credentials worked. Does PyWinRM have a way of encrypting connections without A.D.? I thought Kerberos needed A.D.

    – Kiran
    Aug 11 '16 at 0:01











  • It uses TLS like any secure web server. You didn't read the PyWinRM documentation?

    – Michael Hampton
    Aug 11 '16 at 0:42











  • I read PyWinRM documentation. I think this [article](ramblingcookiemonster.github.io/Cross-Platform-PowerShell-Remoting/) contradicts your statement about TLS. Which document are you referring to? I want PyWinRM to be encrypt the credentials when they are transmitted to the Windows server. But how do I do this?

    – Kiran
    Aug 12 '16 at 0:16













0












0








0








I am running Jenkins 1.6 on CentOS 7.2. I have several Windows 2012 servers without A.D. I connect to the Windows machines with local credentials. I have configured a development environment with Python and WinRM on the Linux server. For production my configuration will not work because WinRM is not encrypted.



How do I securely have Jenkins initiate builds on Windows machines without A.D.? I think my requirement of not having A.D. rules out Kerberos. (This link says that both the Linux and Windows servers must be part of the domain. I read elsewhere that it is inadvisable to join a Linux server to an A.D. domain.) I think the only solution would be to use encryption. But how do I do this?



On the Windows server that I set up with Jenkins, I tried to harden it to simulate production requirements: I used this command (from a command prompt opened as Administrator):



winrm set winrm/config/service @AllowUnencrypted="false"


But this made my Jenkins builds brake with an error like this:




winrm.exceptions.UnauthorizedError: 401 Unauthorized




My Jenkins builds use Python scripts with the authentication hard coded in them. I cannot have plaintext passwords in production.



If there is not a way to encrypt WinRM from the Linux/Jenkins server without A.D., what are my options for Jenkins pushing builds (running PowerShell commands) in a secure way in production?



Edit 8/16/16: I tried a different method without winrm. I set up SSH between the Linux server with Jenkins and the Windows servers.



How do I enter SSH credentials in Jenkins to do builds on other servers? The connection aspects should be about the same as a Linux server with Jenkins managing builds on other Linux servers as my Windows servers have OpenSSH. I do want to invoke a PowerShell script on the Windows server. Here is what I tried.



In the Jenkins UI, I go to the home page, then to Manage Credentials -> Configure System -> SSH Remote hosts. I click Add server and enter an IP address for the hostname. For the port I use 22. For the username I use gooduser. From the Linux back end of this Jenkins server, I can use gooduser to login via SSH to the Windows server that I entered in Jenkins. So I know the credentials work. I know port 22 is not blocked. But in the Jenkins web UI, I get "Can't connect to server" underneath the username field.



I tried not using a passphrase but pointing the keyfile to a location on the Linux server. I tried this with and without a password. I kept getting "Can't connect to server." Why I am getting this?



I tried adding additional servers beneath. I entered at least a hostname, a username, and a password. I click apply or save. I then click somewhere else in the web UI. But when I go back to SSH Hosts, all the subsequent server credentials are gone. Only the top, first SSH server's settings remain. Why do they go away? The button allows for new fields to appear. The button says "SSH sites that projects will want to connect." What does that mean?










share|improve this question
















I am running Jenkins 1.6 on CentOS 7.2. I have several Windows 2012 servers without A.D. I connect to the Windows machines with local credentials. I have configured a development environment with Python and WinRM on the Linux server. For production my configuration will not work because WinRM is not encrypted.



How do I securely have Jenkins initiate builds on Windows machines without A.D.? I think my requirement of not having A.D. rules out Kerberos. (This link says that both the Linux and Windows servers must be part of the domain. I read elsewhere that it is inadvisable to join a Linux server to an A.D. domain.) I think the only solution would be to use encryption. But how do I do this?



On the Windows server that I set up with Jenkins, I tried to harden it to simulate production requirements: I used this command (from a command prompt opened as Administrator):



winrm set winrm/config/service @AllowUnencrypted="false"


But this made my Jenkins builds brake with an error like this:




winrm.exceptions.UnauthorizedError: 401 Unauthorized




My Jenkins builds use Python scripts with the authentication hard coded in them. I cannot have plaintext passwords in production.



If there is not a way to encrypt WinRM from the Linux/Jenkins server without A.D., what are my options for Jenkins pushing builds (running PowerShell commands) in a secure way in production?



Edit 8/16/16: I tried a different method without winrm. I set up SSH between the Linux server with Jenkins and the Windows servers.



How do I enter SSH credentials in Jenkins to do builds on other servers? The connection aspects should be about the same as a Linux server with Jenkins managing builds on other Linux servers as my Windows servers have OpenSSH. I do want to invoke a PowerShell script on the Windows server. Here is what I tried.



In the Jenkins UI, I go to the home page, then to Manage Credentials -> Configure System -> SSH Remote hosts. I click Add server and enter an IP address for the hostname. For the port I use 22. For the username I use gooduser. From the Linux back end of this Jenkins server, I can use gooduser to login via SSH to the Windows server that I entered in Jenkins. So I know the credentials work. I know port 22 is not blocked. But in the Jenkins web UI, I get "Can't connect to server" underneath the username field.



I tried not using a passphrase but pointing the keyfile to a location on the Linux server. I tried this with and without a password. I kept getting "Can't connect to server." Why I am getting this?



I tried adding additional servers beneath. I entered at least a hostname, a username, and a password. I click apply or save. I then click somewhere else in the web UI. But when I go back to SSH Hosts, all the subsequent server credentials are gone. Only the top, first SSH server's settings remain. Why do they go away? The button allows for new fields to appear. The button says "SSH sites that projects will want to connect." What does that mean?







linux windows powershell encryption winrm






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 17 '16 at 0:48







Kiran

















asked Aug 9 '16 at 21:56









KiranKiran

322 silver badges10 bronze badges




322 silver badges10 bronze badges












  • PyWinRM will perfectly handle encrypted connections. Make sure you have the correct credentials. 401 means that the credentials could not be verified.

    – Michael Hampton
    Aug 10 '16 at 0:28











  • I made sure the credentials worked. My Jenkins build worked until I changed the AllowUnencrypted setting on the Windows sever. So I know the credentials worked. Does PyWinRM have a way of encrypting connections without A.D.? I thought Kerberos needed A.D.

    – Kiran
    Aug 11 '16 at 0:01











  • It uses TLS like any secure web server. You didn't read the PyWinRM documentation?

    – Michael Hampton
    Aug 11 '16 at 0:42











  • I read PyWinRM documentation. I think this [article](ramblingcookiemonster.github.io/Cross-Platform-PowerShell-Remoting/) contradicts your statement about TLS. Which document are you referring to? I want PyWinRM to be encrypt the credentials when they are transmitted to the Windows server. But how do I do this?

    – Kiran
    Aug 12 '16 at 0:16

















  • PyWinRM will perfectly handle encrypted connections. Make sure you have the correct credentials. 401 means that the credentials could not be verified.

    – Michael Hampton
    Aug 10 '16 at 0:28











  • I made sure the credentials worked. My Jenkins build worked until I changed the AllowUnencrypted setting on the Windows sever. So I know the credentials worked. Does PyWinRM have a way of encrypting connections without A.D.? I thought Kerberos needed A.D.

    – Kiran
    Aug 11 '16 at 0:01











  • It uses TLS like any secure web server. You didn't read the PyWinRM documentation?

    – Michael Hampton
    Aug 11 '16 at 0:42











  • I read PyWinRM documentation. I think this [article](ramblingcookiemonster.github.io/Cross-Platform-PowerShell-Remoting/) contradicts your statement about TLS. Which document are you referring to? I want PyWinRM to be encrypt the credentials when they are transmitted to the Windows server. But how do I do this?

    – Kiran
    Aug 12 '16 at 0:16
















PyWinRM will perfectly handle encrypted connections. Make sure you have the correct credentials. 401 means that the credentials could not be verified.

– Michael Hampton
Aug 10 '16 at 0:28





PyWinRM will perfectly handle encrypted connections. Make sure you have the correct credentials. 401 means that the credentials could not be verified.

– Michael Hampton
Aug 10 '16 at 0:28













I made sure the credentials worked. My Jenkins build worked until I changed the AllowUnencrypted setting on the Windows sever. So I know the credentials worked. Does PyWinRM have a way of encrypting connections without A.D.? I thought Kerberos needed A.D.

– Kiran
Aug 11 '16 at 0:01





I made sure the credentials worked. My Jenkins build worked until I changed the AllowUnencrypted setting on the Windows sever. So I know the credentials worked. Does PyWinRM have a way of encrypting connections without A.D.? I thought Kerberos needed A.D.

– Kiran
Aug 11 '16 at 0:01













It uses TLS like any secure web server. You didn't read the PyWinRM documentation?

– Michael Hampton
Aug 11 '16 at 0:42





It uses TLS like any secure web server. You didn't read the PyWinRM documentation?

– Michael Hampton
Aug 11 '16 at 0:42













I read PyWinRM documentation. I think this [article](ramblingcookiemonster.github.io/Cross-Platform-PowerShell-Remoting/) contradicts your statement about TLS. Which document are you referring to? I want PyWinRM to be encrypt the credentials when they are transmitted to the Windows server. But how do I do this?

– Kiran
Aug 12 '16 at 0:16





I read PyWinRM documentation. I think this [article](ramblingcookiemonster.github.io/Cross-Platform-PowerShell-Remoting/) contradicts your statement about TLS. Which document are you referring to? I want PyWinRM to be encrypt the credentials when they are transmitted to the Windows server. But how do I do this?

– Kiran
Aug 12 '16 at 0:16










1 Answer
1






active

oldest

votes


















0














You can configure each Windows server to be a Jenkins node (aka "slave" or "agent"). Then use a pipeline job to control the flow of which commands runs on which node (using node blocks).



This will eliminate the need for WinRM, SSH or other remote execution methods.



Securing the Jenkins node-to-master communications can be done using a per-node secret, managed by Jenkins. I do this with ~20 different machines, most Windows-based, some Linux-based, including complex build jobs that require parts that build under Windows and other parts that build under Linux.



Example pipeline code:



node("LinuxBuild") 
sh """
ls -l
echo "Running under Linux!"
"""


node("WinBuild")
bat """
dir
echo Running under Windows!
"""



In the above code, LinuxBuild and WinBuild are labels given to one or more Linux or Windows nodes, accordingly.






share|improve this answer



























    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%2f795884%2fhow-can-jenkins-on-linux-do-builds-to-windows-servers-securely-without-a-d%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














    You can configure each Windows server to be a Jenkins node (aka "slave" or "agent"). Then use a pipeline job to control the flow of which commands runs on which node (using node blocks).



    This will eliminate the need for WinRM, SSH or other remote execution methods.



    Securing the Jenkins node-to-master communications can be done using a per-node secret, managed by Jenkins. I do this with ~20 different machines, most Windows-based, some Linux-based, including complex build jobs that require parts that build under Windows and other parts that build under Linux.



    Example pipeline code:



    node("LinuxBuild") 
    sh """
    ls -l
    echo "Running under Linux!"
    """


    node("WinBuild")
    bat """
    dir
    echo Running under Windows!
    """



    In the above code, LinuxBuild and WinBuild are labels given to one or more Linux or Windows nodes, accordingly.






    share|improve this answer





























      0














      You can configure each Windows server to be a Jenkins node (aka "slave" or "agent"). Then use a pipeline job to control the flow of which commands runs on which node (using node blocks).



      This will eliminate the need for WinRM, SSH or other remote execution methods.



      Securing the Jenkins node-to-master communications can be done using a per-node secret, managed by Jenkins. I do this with ~20 different machines, most Windows-based, some Linux-based, including complex build jobs that require parts that build under Windows and other parts that build under Linux.



      Example pipeline code:



      node("LinuxBuild") 
      sh """
      ls -l
      echo "Running under Linux!"
      """


      node("WinBuild")
      bat """
      dir
      echo Running under Windows!
      """



      In the above code, LinuxBuild and WinBuild are labels given to one or more Linux or Windows nodes, accordingly.






      share|improve this answer



























        0












        0








        0







        You can configure each Windows server to be a Jenkins node (aka "slave" or "agent"). Then use a pipeline job to control the flow of which commands runs on which node (using node blocks).



        This will eliminate the need for WinRM, SSH or other remote execution methods.



        Securing the Jenkins node-to-master communications can be done using a per-node secret, managed by Jenkins. I do this with ~20 different machines, most Windows-based, some Linux-based, including complex build jobs that require parts that build under Windows and other parts that build under Linux.



        Example pipeline code:



        node("LinuxBuild") 
        sh """
        ls -l
        echo "Running under Linux!"
        """


        node("WinBuild")
        bat """
        dir
        echo Running under Windows!
        """



        In the above code, LinuxBuild and WinBuild are labels given to one or more Linux or Windows nodes, accordingly.






        share|improve this answer















        You can configure each Windows server to be a Jenkins node (aka "slave" or "agent"). Then use a pipeline job to control the flow of which commands runs on which node (using node blocks).



        This will eliminate the need for WinRM, SSH or other remote execution methods.



        Securing the Jenkins node-to-master communications can be done using a per-node secret, managed by Jenkins. I do this with ~20 different machines, most Windows-based, some Linux-based, including complex build jobs that require parts that build under Windows and other parts that build under Linux.



        Example pipeline code:



        node("LinuxBuild") 
        sh """
        ls -l
        echo "Running under Linux!"
        """


        node("WinBuild")
        bat """
        dir
        echo Running under Windows!
        """



        In the above code, LinuxBuild and WinBuild are labels given to one or more Linux or Windows nodes, accordingly.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Sep 12 '17 at 13:30

























        answered Sep 12 '17 at 13:23









        Oren ChapoOren Chapo

        1215 bronze badges




        1215 bronze badges



























            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%2f795884%2fhow-can-jenkins-on-linux-do-builds-to-windows-servers-securely-without-a-d%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

            Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

            Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

            Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020