pam_unix(sshd:auth): authentication failureLDAP pass-through authenticationPostfix “SASL authentication failure: No worthy mechs found”Logging authentication failure on OpenLDAParch openldap authentication failurePAM: auth: pam_unix(dovecot:auth): authentication failure;Kerberos-PAM authentication failure: pam or pre-authenticationLDAP authentication failsUnspecified GSS failure. after setting up krb5/ldap authenticationMySQL Authentication against OpenLDAP FailureSMTP authentication failure after TLS cert

How did Arya manage to disguise herself?

Why debootstrap can only run as root?

If I supply 24v to a 50v rated 22000uf electrolytic capacitor, does that mean it will store 44000uf at 24v?

Is it appropriate to refer to God as "It"?

How to reply this mail from potential PhD professor?

I lost my Irish passport. Can I travel to Thailand and back from the UK using my US passport?

Can I use 1000v rectifier diodes instead of 600v rectifier diodes?

What happened to Rhaegal?

Is lying to get "gardening leave" fraud?

What happens if I start too many background jobs?

What is the limiting factor for a CAN bus to exceed 1Mbps bandwidth?

Has any spacecraft ever had the ability to directly communicate with civilian air traffic control?

How do you center multiple equations that have multiple steps?

Is Cola "probably the best-known" Latin word in the world? If not, which might it be?

Is there a QGIS plugin that reclassify raster symbology based on current extent?

Accidentally deleted the "/usr/share" folder

Transfer over $10k

Is it the same airport YUL and YMQ in Canada?

Who died in the Game of Thrones episode, "The Long Night"?

Survey Confirmation - Emphasize the question or the answer?

Why is Arya visibly scared in the library in S8E3?

How can I close a gap between my fence and my neighbor's that's on his side of the property line?

Can a cyclic Amine form an Amide?

Is it cheaper to drop cargo than to land it?



pam_unix(sshd:auth): authentication failure


LDAP pass-through authenticationPostfix “SASL authentication failure: No worthy mechs found”Logging authentication failure on OpenLDAParch openldap authentication failurePAM: auth: pam_unix(dovecot:auth): authentication failure;Kerberos-PAM authentication failure: pam or pre-authenticationLDAP authentication failsUnspecified GSS failure. after setting up krb5/ldap authenticationMySQL Authentication against OpenLDAP FailureSMTP authentication failure after TLS cert






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








0















i have openldap and server Debian 8. i want set ldap authentication. i install ldap-utils libnss-ldapd libpam-ldapd and set them.



# getent passwd user.name
user.name:x:1537:3174:User Name:/home/user.name:/bin/bash
# getent shadow user.name
user.name:*:15140:0:99999:7:::0


when i login i have error:



Sep 19 17:49:49 LDAPClient login[475]: pam_unix(login:auth): authentication failure; logname=LOGIN uid=0 euid=0 tty=/dev/tty1 ruser= rhost= user=name.user
Sep 19 17:49:49 LDAPClient login[475]: pam_ldap(login:auth): Authentication failure; user=name.user`
Sep 19 17:49:53 LDAPClient login[475]: FAILED LOGIN (1) on '/dev/tty1' FOR 'name.user', Authentication failure`


i also set ssh, but have same error:



Sep 19 17:46:37 LDAPClient sshd[807]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=192.168.60.92 user=name.user
Sep 19 17:46:37 LDAPClient sshd[807]: pam_ldap(sshd:auth): Authentication failure; user=name.user
Sep 19 17:46:39 LDAPClient sshd[807]: Failed password for name.user from 192.168.60.92 port 63122 ssh2
Sep 19 17:46:43 LDAPClient sshd[807]: pam_ldap(sshd:auth): Authentication failure; user=name.user
Sep 19 17:46:45 LDAPClient sshd[807]: Failed password for name.user from 192.168.60.92 port 63122 ssh2


How to fix it? I don't have idea:(



# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.

passwd: compat ldap
group: compat ldap
shadow: compat ldap
gshadow: files

hosts: files dns
networks: files

protocols: db files
services: db files
ethers: db files
rpc: db files


the problem was in acl:



olcAccess: 2to dn.subtree="ou=People,dc=example,dc=com"
by peername.ip="192.168.250.78" read
by peername.ip="xx.xx.xx.xx" read
by peername.ip="192.168.250.204" read
by dn="cn=replica,dc=example,dc=com" read
by group.exact="cn=Directory Administrators,dc=example,dc=com" manage
by dn.subtree="ou=Special Users,dc=example,dc=com" read
by dn.subtree="ou=Special Users,dc=example,dc=com" read
!!!by * none

olcAccess: 5to *
by peername.ip="xx.xx.xx.xx" read
by peername.ip="192.168.250.204" read
by group.exact="cn=Directory Administrators,dc=example,dc=com" manage
by dn="cn=admin,dc=example,dc=com" write
by dn="cn=replica,dc=example,dc=com" read
by dn.subtree="ou=Special Users,dc=example,dc=com" read
!!!by * none









share|improve this question



















  • 1





    Have you changed /etc/nsswitch.conf to point to LDAP?

    – Tim Fletcher
    Sep 20 '16 at 10:14











  • yep, my /etc/nsswitch.conf: passwd: combat ldap group: compat ldap shadow: compat ldap gshadow: files hosts: files dns networks: files protocols: db files services: db files ethers: db files rpc: db files

    – Nikita
    Sep 21 '16 at 3:43












  • What does the command getent passwd output on the system? It should list all users, local and LDAP

    – Tim Fletcher
    Sep 21 '16 at 7:57












  • @timFletcher yep, this command list all users, local and LDAP

    – Nikita
    Sep 21 '16 at 11:26






  • 1





    Could you update the question with this answer to help others, thanks

    – Tim Fletcher
    Sep 22 '16 at 10:21

















0















i have openldap and server Debian 8. i want set ldap authentication. i install ldap-utils libnss-ldapd libpam-ldapd and set them.



# getent passwd user.name
user.name:x:1537:3174:User Name:/home/user.name:/bin/bash
# getent shadow user.name
user.name:*:15140:0:99999:7:::0


when i login i have error:



Sep 19 17:49:49 LDAPClient login[475]: pam_unix(login:auth): authentication failure; logname=LOGIN uid=0 euid=0 tty=/dev/tty1 ruser= rhost= user=name.user
Sep 19 17:49:49 LDAPClient login[475]: pam_ldap(login:auth): Authentication failure; user=name.user`
Sep 19 17:49:53 LDAPClient login[475]: FAILED LOGIN (1) on '/dev/tty1' FOR 'name.user', Authentication failure`


i also set ssh, but have same error:



Sep 19 17:46:37 LDAPClient sshd[807]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=192.168.60.92 user=name.user
Sep 19 17:46:37 LDAPClient sshd[807]: pam_ldap(sshd:auth): Authentication failure; user=name.user
Sep 19 17:46:39 LDAPClient sshd[807]: Failed password for name.user from 192.168.60.92 port 63122 ssh2
Sep 19 17:46:43 LDAPClient sshd[807]: pam_ldap(sshd:auth): Authentication failure; user=name.user
Sep 19 17:46:45 LDAPClient sshd[807]: Failed password for name.user from 192.168.60.92 port 63122 ssh2


How to fix it? I don't have idea:(



# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.

passwd: compat ldap
group: compat ldap
shadow: compat ldap
gshadow: files

hosts: files dns
networks: files

protocols: db files
services: db files
ethers: db files
rpc: db files


the problem was in acl:



olcAccess: 2to dn.subtree="ou=People,dc=example,dc=com"
by peername.ip="192.168.250.78" read
by peername.ip="xx.xx.xx.xx" read
by peername.ip="192.168.250.204" read
by dn="cn=replica,dc=example,dc=com" read
by group.exact="cn=Directory Administrators,dc=example,dc=com" manage
by dn.subtree="ou=Special Users,dc=example,dc=com" read
by dn.subtree="ou=Special Users,dc=example,dc=com" read
!!!by * none

olcAccess: 5to *
by peername.ip="xx.xx.xx.xx" read
by peername.ip="192.168.250.204" read
by group.exact="cn=Directory Administrators,dc=example,dc=com" manage
by dn="cn=admin,dc=example,dc=com" write
by dn="cn=replica,dc=example,dc=com" read
by dn.subtree="ou=Special Users,dc=example,dc=com" read
!!!by * none









share|improve this question



















  • 1





    Have you changed /etc/nsswitch.conf to point to LDAP?

    – Tim Fletcher
    Sep 20 '16 at 10:14











  • yep, my /etc/nsswitch.conf: passwd: combat ldap group: compat ldap shadow: compat ldap gshadow: files hosts: files dns networks: files protocols: db files services: db files ethers: db files rpc: db files

    – Nikita
    Sep 21 '16 at 3:43












  • What does the command getent passwd output on the system? It should list all users, local and LDAP

    – Tim Fletcher
    Sep 21 '16 at 7:57












  • @timFletcher yep, this command list all users, local and LDAP

    – Nikita
    Sep 21 '16 at 11:26






  • 1





    Could you update the question with this answer to help others, thanks

    – Tim Fletcher
    Sep 22 '16 at 10:21













0












0








0








i have openldap and server Debian 8. i want set ldap authentication. i install ldap-utils libnss-ldapd libpam-ldapd and set them.



# getent passwd user.name
user.name:x:1537:3174:User Name:/home/user.name:/bin/bash
# getent shadow user.name
user.name:*:15140:0:99999:7:::0


when i login i have error:



Sep 19 17:49:49 LDAPClient login[475]: pam_unix(login:auth): authentication failure; logname=LOGIN uid=0 euid=0 tty=/dev/tty1 ruser= rhost= user=name.user
Sep 19 17:49:49 LDAPClient login[475]: pam_ldap(login:auth): Authentication failure; user=name.user`
Sep 19 17:49:53 LDAPClient login[475]: FAILED LOGIN (1) on '/dev/tty1' FOR 'name.user', Authentication failure`


i also set ssh, but have same error:



Sep 19 17:46:37 LDAPClient sshd[807]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=192.168.60.92 user=name.user
Sep 19 17:46:37 LDAPClient sshd[807]: pam_ldap(sshd:auth): Authentication failure; user=name.user
Sep 19 17:46:39 LDAPClient sshd[807]: Failed password for name.user from 192.168.60.92 port 63122 ssh2
Sep 19 17:46:43 LDAPClient sshd[807]: pam_ldap(sshd:auth): Authentication failure; user=name.user
Sep 19 17:46:45 LDAPClient sshd[807]: Failed password for name.user from 192.168.60.92 port 63122 ssh2


How to fix it? I don't have idea:(



# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.

passwd: compat ldap
group: compat ldap
shadow: compat ldap
gshadow: files

hosts: files dns
networks: files

protocols: db files
services: db files
ethers: db files
rpc: db files


the problem was in acl:



olcAccess: 2to dn.subtree="ou=People,dc=example,dc=com"
by peername.ip="192.168.250.78" read
by peername.ip="xx.xx.xx.xx" read
by peername.ip="192.168.250.204" read
by dn="cn=replica,dc=example,dc=com" read
by group.exact="cn=Directory Administrators,dc=example,dc=com" manage
by dn.subtree="ou=Special Users,dc=example,dc=com" read
by dn.subtree="ou=Special Users,dc=example,dc=com" read
!!!by * none

olcAccess: 5to *
by peername.ip="xx.xx.xx.xx" read
by peername.ip="192.168.250.204" read
by group.exact="cn=Directory Administrators,dc=example,dc=com" manage
by dn="cn=admin,dc=example,dc=com" write
by dn="cn=replica,dc=example,dc=com" read
by dn.subtree="ou=Special Users,dc=example,dc=com" read
!!!by * none









share|improve this question
















i have openldap and server Debian 8. i want set ldap authentication. i install ldap-utils libnss-ldapd libpam-ldapd and set them.



# getent passwd user.name
user.name:x:1537:3174:User Name:/home/user.name:/bin/bash
# getent shadow user.name
user.name:*:15140:0:99999:7:::0


when i login i have error:



Sep 19 17:49:49 LDAPClient login[475]: pam_unix(login:auth): authentication failure; logname=LOGIN uid=0 euid=0 tty=/dev/tty1 ruser= rhost= user=name.user
Sep 19 17:49:49 LDAPClient login[475]: pam_ldap(login:auth): Authentication failure; user=name.user`
Sep 19 17:49:53 LDAPClient login[475]: FAILED LOGIN (1) on '/dev/tty1' FOR 'name.user', Authentication failure`


i also set ssh, but have same error:



Sep 19 17:46:37 LDAPClient sshd[807]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=192.168.60.92 user=name.user
Sep 19 17:46:37 LDAPClient sshd[807]: pam_ldap(sshd:auth): Authentication failure; user=name.user
Sep 19 17:46:39 LDAPClient sshd[807]: Failed password for name.user from 192.168.60.92 port 63122 ssh2
Sep 19 17:46:43 LDAPClient sshd[807]: pam_ldap(sshd:auth): Authentication failure; user=name.user
Sep 19 17:46:45 LDAPClient sshd[807]: Failed password for name.user from 192.168.60.92 port 63122 ssh2


How to fix it? I don't have idea:(



# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.

passwd: compat ldap
group: compat ldap
shadow: compat ldap
gshadow: files

hosts: files dns
networks: files

protocols: db files
services: db files
ethers: db files
rpc: db files


the problem was in acl:



olcAccess: 2to dn.subtree="ou=People,dc=example,dc=com"
by peername.ip="192.168.250.78" read
by peername.ip="xx.xx.xx.xx" read
by peername.ip="192.168.250.204" read
by dn="cn=replica,dc=example,dc=com" read
by group.exact="cn=Directory Administrators,dc=example,dc=com" manage
by dn.subtree="ou=Special Users,dc=example,dc=com" read
by dn.subtree="ou=Special Users,dc=example,dc=com" read
!!!by * none

olcAccess: 5to *
by peername.ip="xx.xx.xx.xx" read
by peername.ip="192.168.250.204" read
by group.exact="cn=Directory Administrators,dc=example,dc=com" manage
by dn="cn=admin,dc=example,dc=com" write
by dn="cn=replica,dc=example,dc=com" read
by dn.subtree="ou=Special Users,dc=example,dc=com" read
!!!by * none






debian openldap






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Sep 28 '16 at 8:55







Nikita

















asked Sep 20 '16 at 10:00









NikitaNikita

313




313







  • 1





    Have you changed /etc/nsswitch.conf to point to LDAP?

    – Tim Fletcher
    Sep 20 '16 at 10:14











  • yep, my /etc/nsswitch.conf: passwd: combat ldap group: compat ldap shadow: compat ldap gshadow: files hosts: files dns networks: files protocols: db files services: db files ethers: db files rpc: db files

    – Nikita
    Sep 21 '16 at 3:43












  • What does the command getent passwd output on the system? It should list all users, local and LDAP

    – Tim Fletcher
    Sep 21 '16 at 7:57












  • @timFletcher yep, this command list all users, local and LDAP

    – Nikita
    Sep 21 '16 at 11:26






  • 1





    Could you update the question with this answer to help others, thanks

    – Tim Fletcher
    Sep 22 '16 at 10:21












  • 1





    Have you changed /etc/nsswitch.conf to point to LDAP?

    – Tim Fletcher
    Sep 20 '16 at 10:14











  • yep, my /etc/nsswitch.conf: passwd: combat ldap group: compat ldap shadow: compat ldap gshadow: files hosts: files dns networks: files protocols: db files services: db files ethers: db files rpc: db files

    – Nikita
    Sep 21 '16 at 3:43












  • What does the command getent passwd output on the system? It should list all users, local and LDAP

    – Tim Fletcher
    Sep 21 '16 at 7:57












  • @timFletcher yep, this command list all users, local and LDAP

    – Nikita
    Sep 21 '16 at 11:26






  • 1





    Could you update the question with this answer to help others, thanks

    – Tim Fletcher
    Sep 22 '16 at 10:21







1




1





Have you changed /etc/nsswitch.conf to point to LDAP?

– Tim Fletcher
Sep 20 '16 at 10:14





Have you changed /etc/nsswitch.conf to point to LDAP?

– Tim Fletcher
Sep 20 '16 at 10:14













yep, my /etc/nsswitch.conf: passwd: combat ldap group: compat ldap shadow: compat ldap gshadow: files hosts: files dns networks: files protocols: db files services: db files ethers: db files rpc: db files

– Nikita
Sep 21 '16 at 3:43






yep, my /etc/nsswitch.conf: passwd: combat ldap group: compat ldap shadow: compat ldap gshadow: files hosts: files dns networks: files protocols: db files services: db files ethers: db files rpc: db files

– Nikita
Sep 21 '16 at 3:43














What does the command getent passwd output on the system? It should list all users, local and LDAP

– Tim Fletcher
Sep 21 '16 at 7:57






What does the command getent passwd output on the system? It should list all users, local and LDAP

– Tim Fletcher
Sep 21 '16 at 7:57














@timFletcher yep, this command list all users, local and LDAP

– Nikita
Sep 21 '16 at 11:26





@timFletcher yep, this command list all users, local and LDAP

– Nikita
Sep 21 '16 at 11:26




1




1





Could you update the question with this answer to help others, thanks

– Tim Fletcher
Sep 22 '16 at 10:21





Could you update the question with this answer to help others, thanks

– Tim Fletcher
Sep 22 '16 at 10:21










1 Answer
1






active

oldest

votes


















0














If you check your shadow you have not set a password for you account.
user.name:*:15140:0:99999:7:::0 ---- * means no password.



The system does not allow no password login.



TRY to create a password for your account and retry to login






share|improve this answer

























  • but i have pass.

    – Nikita
    Sep 21 '16 at 3:46











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%2f804187%2fpam-unixsshdauth-authentication-failure%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














If you check your shadow you have not set a password for you account.
user.name:*:15140:0:99999:7:::0 ---- * means no password.



The system does not allow no password login.



TRY to create a password for your account and retry to login






share|improve this answer

























  • but i have pass.

    – Nikita
    Sep 21 '16 at 3:46















0














If you check your shadow you have not set a password for you account.
user.name:*:15140:0:99999:7:::0 ---- * means no password.



The system does not allow no password login.



TRY to create a password for your account and retry to login






share|improve this answer

























  • but i have pass.

    – Nikita
    Sep 21 '16 at 3:46













0












0








0







If you check your shadow you have not set a password for you account.
user.name:*:15140:0:99999:7:::0 ---- * means no password.



The system does not allow no password login.



TRY to create a password for your account and retry to login






share|improve this answer















If you check your shadow you have not set a password for you account.
user.name:*:15140:0:99999:7:::0 ---- * means no password.



The system does not allow no password login.



TRY to create a password for your account and retry to login







share|improve this answer














share|improve this answer



share|improve this answer








edited Sep 28 '16 at 8:59









Flup

5,52112541




5,52112541










answered Sep 20 '16 at 10:16









JuriJuri

11




11












  • but i have pass.

    – Nikita
    Sep 21 '16 at 3:46

















  • but i have pass.

    – Nikita
    Sep 21 '16 at 3:46
















but i have pass.

– Nikita
Sep 21 '16 at 3:46





but i have pass.

– Nikita
Sep 21 '16 at 3:46

















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%2f804187%2fpam-unixsshdauth-authentication-failure%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