Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-12 Terurut Topik Kowal
--- cebonx <[EMAIL PROTECTED]> wrote:

> tapi masih ada satu kok di nautilusnya
> printernya nggak keliatan ya?

sama di konqueror gw jg gag nongol... emang dari
sananya kali :p

replying from web

Send instant messages to your online friends http://asia.messenger.yahoo.com 

-- 
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-12 Terurut Topik cebonx

Terimakasih buat rekan2 semua,

masalah sharing printer& smbclient dari linux box ke XP machine, dan solving
ternyata masalahnya bener seperti kata mas Kowal, "kerberos"
setelah saya install kerberos client langsung jadi addnew printer. 
print test page berhasil tuh..


tapi masih ada satu kok di nautilusnya printernya nggak keliatan ya?

tapi dah makasih banget buat tmn2 semua

thanxz...

c3bonx


___ 
How much free photo storage do you get? Store your holiday 
snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com


--
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik Kowal
huheuheue banyak amir... dukungan kerberos di sambanya
udah? 
baca ini deh... sorry url-nya lupa... hasil ngesave
dari forum
=
First, make sure kerberos is installed: 
# rpm -qa | grep krb 
this should return at least 3 packages: krb5-devel,
krb5-libs and krb5-workstation 

Next, make sure the ldap development libraries are
installed: 
# rpm -qa | grep ldap-devel 

If either of these returns nothing, you'll need to
install them - which you can do from the Redhat CD. 

make sure there's an entry for your active directory
DC in your /etc/hosts file: 
1.2.3.4 addc.example.com addc 


Next, edit your /etc/krb5.conf to match your site.
Everything should be fairly self-explanitory - and
everything is case sensitive. Do not comment this
file. 

Once you've gotten to this point, you can try: 
# /usr/kerberos/bin/kinit [EMAIL PROTECTED] 
replacing *user* with a real user and DOMAIN.COM with
a real domain (which must be UPPERCASE). If things are
working, you'll be prompted for a password. If you
enter the correct password, you'll come back to a bash
shell, if not, you should be presented with: 
"kinit(v5): Preauthentication failed while getting
initial credentials" 
or some such. 

Note: If the clock time on the Linux machine is more
than 5 minutes off from the time on the windows
machine no ticket information will work. There are
three wys to deal with this: 
1. Have the Linux server act as a network time server,
with the windows machine as a client 
2. Have the windows machine act as a time server for
the linux client 
3. Make both systems pull the time from the same 3rd
server ( some are listed here -
http://ntp.isc.org/bin/view/Servers/NTPPoolServers ) 



Next, uninstall samba if it's installed: 
# rpm -e samba 

get the latest version of samba: 
$ wget
"http://us1.samba.org/samba/ftp/samba-latest.tar.gz"; 

expand and install samba: 
Code: 
$ tar -zxvf samba*.tar.gz 

$ cd samba-3.0.13 

$ ./configure --prefix=/usr/local/samba --with-ldap
--with-ads --with-krb5 --with-pam --with-winbind 

# make && make install 



In your smb.conf: 
8<- 
netbios name = LINUX_SERVER_NAME 
realm = DOMAIN.COM 
ads server = 123.123.123.123 
security = ADS 
encrypt passwords = yes 
8<- 

start samba: 
# /etc/rc.d/init.d/smb start 

To add the linux computer to the AD, you need to log
into the DC and add it as a user with such privledges,
so (from the Linux system): 
# /usr/local/samba/bin/net ads join -U Administrator 
it should prompt you for Administrator's password.
Note that Administrator should be a user with the
right to add a computer to the AD. 

you should see something like: 
Joined 'LINUX_MACHINE_NAME' to realm 'DOMAIN.COM' 

To verify this worked, go to the windows DC and open
Active Directory->Users and Computers and look for
your linux machine to be listed there. 

That's all you absolutely need to connect to the AD.
If you want to map users to the AD (which is probably
why you're doing this), open /etc/nsswitch.conf and
change this: 
passwd: files 
shadow: files 
group: files 

to this: 
passwd: compat winbind 
shadow: compat 
group: compat winbind 

start the winbind daemon: 
# winbindd 

make sure it's running: 
# ps -ae | grep winbindd 

if nothing gets returned, you probably didn't
configure samba with kerberos and ldap support. If it
shows winbindd running, you're all set. To make sure
everything starts on reboot: 
open /etc/rc.d/init.d/smb and
/etc/rc.d/init.d/winbindd and make sure the line: 
# chkconfig: 345 NN NN 
exixts (NN will be different numbers pertaining to
priority), it should be on line 3 of both files. if
these lines don't exist, add them. If they read: 
# chkconfig: - NN NN 
change the - to 345 

save and close those files and run chkconfig: 
# chkconfig smb reset 
# chkconfig winbindd reset 

you can check the runlevels they will start at with 
# chkconfig smb --list 
# chkconfig winbindd --list 

That should about cover everything. 

HTH 
THIS
=


--- cebonx <[EMAIL PROTECTED]> wrote:

> Saya dah install kerberos client nih
> ini isi dari /etc/krb.conf


replying from web



__ 
Meet your soulmate!
Yahoo! Asia presents Meetic - where millions of singles gather
http://asia.yahoo.com/meetic


-- 
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik cebonx

Saya dah install kerberos client nih
ini isi dari /etc/krb.conf

SICS.SE kerberos.sics.se admin server
NADA.KTH.SE kerberos.nada.kth.se admin server
NADA.KTH.SE sysman.nada.kth.se
NADA.KTH.SE server.nada.kth.se
ADMIN.KTH.SEulysses.admin.kth.se admin server
ADMIN.KTH.SEgraziano.admin.kth.se
ADMIN.KTH.SEmontano.admin.kth.se
BION.KTH.SE chaplin.bion.kth.se admin server
DSV.SU.SE   ssi.dsv.su.se admin server
DSV.SU.SE   vall.dsv.su.se
E.KTH.SEkerberos.e.kth.se admin server
E.KTH.SEkerberos-1.e.kth.se
E.KTH.SEkerberos-2.e.kth.se
IT.KTH.SE   kerberos.it.kth.se
IT.KTH.SE   kerberos-1.it.kth.se
IT.KTH.SE   kerberos-2.it.kth.se
MECH.KTH.SE kerberos.mech.kth.se admin server
KTH.SE  kth.se admin server
ML.KVA.SE   gustava.ml.kva.se admin server
PI.SE   liszt.adm.pi.se admin server
STACKEN.KTH.SE  kerberos.stacken.kth.se admin server
SUNET.SEkerberos.sunet.se admin server
KITHRUP.COM KITHRUP.COM admin server
ATHENA.MIT.EDU kerberos.mit.edu admin server
ATHENA.MIT.EDU kerberos-1.mit.edu
ATHENA.MIT.EDU kerberos-2.mit.edu
ATHENA.MIT.EDU kerberos-3.mit.edu
LCS.MIT.EDU kerberos.lcs.mit.edu admin server
LS.MIT.EDU ls.mit.edu admin server
IFS.UMICH.EDU kerberos.ifs.umich.edu
CS.WASHINGTON.EDU hawk.cs.washington.edu
CS.WASHINGTON.EDU aspen.cs.washington.edu
TELECOM.MIT.EDU bitsy.mit.edu
MEDIA-LAB.MIT.EDU kerberos.media.mit.edu admin server
ZONE.MIT.EDU casio.mit.edu admin server
NEAR.NET kerberos.near.net
CATS.UCSC.EDU mehitabel.ucsc.edu admin server
CATS.UCSC.EDU morris.ucsc.edu
EOS.NCSU.EDU kerberos.eos.ncsu.edu admin server
CS.CMU.EDU kerberos.cs.cmu.edu admin server
CS.CMU.EDU kerberos-2.srv.cs.cmu.edu
ANDREW.CMU.EDU vice2.fs.andrew.cmu.edu
ANDREW.CMU.EDU vice7.fs.andrew.cmu.edu
ANDREW.CMU.EDU vice11.fs.andrew.cmu.edu
ANDREW.CMU.EDU vice12.fs.andrew.cmu.edu
ANDREW.CMU.EDU vice28.fs.andrew.cmu.edu admin server
IASTATE.EDU kerberos-1.iastate.edu admin server
IASTATE.EDU kerberos-2.iastate.edu
CYGNUS.COM kerberos-1.cygnus.com
CYGNUS.COM kerberos.cygnus.com admin server
ATRIA.COM kerberos.atria.com admin server
PANIX.COM kerberos.panix.com admin server
PANIX.COM cerebus.panix.com
JPL.NASA.GOV roo.jpl.nasa.gov admin server
UNLV.EDU kerberos.unlv.edu admin server
IHTFP.ORG kerberos.ihtfp.org admin server
WELLESLEY.EDU kerberos.wellesley.edu admin server
PGP.COM kerberos.pgp.com admin server
GREY17.ORG kerberos.grey17.org admin server
DOOMCOM.ORG kerberos.doomcom.org admin server
GNU.ORG kerberos.gnu.org admin server
GNU.ORG kerberos-2.gnu.org
1TS.ORG kerberos.1ts.org admin server

terus apa yg mesti saya lakukan lagi?


Kowal wrote:


bener perkiraan gw, di linux boxnya harus ada kerberos
client dulu dan di sambanya jg harus support kerberos,
LDAP, dll. kalau cuma file sharing doang sih emang gag
perlu pake kerberos. tapi kalo printer wajib ada tuh.

gw jg baru ngalamin hal kaya gitu beberapa hari yg
lalu, jawabannya ya di kerberos itu2 hari puyeng gag
taunya cuma salah isi krb5.conf-nya aja, setelah
kinit-nya tdk menghasilkan error baru deh bisa add
printer2 yg ada di client winxppro.

untungnya di distro yg gw pake paket2 kerberos
terinstall secara default (SLP 9.3)
 

 







___ 
Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with voicemail http://uk.messenger.yahoo.com


--
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik Kowal
bener perkiraan gw, di linux boxnya harus ada kerberos
client dulu dan di sambanya jg harus support kerberos,
LDAP, dll. kalau cuma file sharing doang sih emang gag
perlu pake kerberos. tapi kalo printer wajib ada tuh.

gw jg baru ngalamin hal kaya gitu beberapa hari yg
lalu, jawabannya ya di kerberos itu2 hari puyeng gag
taunya cuma salah isi krb5.conf-nya aja, setelah
kinit-nya tdk menghasilkan error baru deh bisa add
printer2 yg ada di client winxppro.

untungnya di distro yg gw pake paket2 kerberos
terinstall secara default (SLP 9.3)

--- cebonx <[EMAIL PROTECTED]> wrote:

> Jadi saya tuh mo sharing dari machine saya (Linux
> UBUNTU) ke Win XP 
> (Irfan) yg merupakan client dari PDC (Win2000
> adavanced Server)
> Klo untuk sharing file bisa. keliatan lewat
> Network place (klo di 
> linux namanya apa ya? ).
> tapi klo jalanin smbclient lewat konsol hasilnya
> seperti itu.
> 
> Sebetulnya yg jadi masalah inti adalah Printer
> sharing di Kompi Irfan 
> itu kok tidak keliatan di network place itu,
> seharusnya kan keliatan. 
> agar kita bisa sharing.
> 
> Saya pake UBUNTU
> 


replying from web



__ 
Meet your soulmate!
Yahoo! Asia presents Meetic - where millions of singles gather
http://asia.yahoo.com/meetic


-- 
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik cebonx

weleh.. weleh.. weleh...


bearti kerberos clientnya gag ada tuh.

authorization di windows 2k kan menggunakan
kerberos... kalo gag ada kerberosnya gag bisa
otorisasi ke win 2k. btw win 2knya sebagai server
kan???
trus samba nya juga harus support kerberos, winbind,
LDAP,dll deh..

coba output command berikiut apa?
#smbd -b | grep KRB
#smbd -b | grep KRB
#smbd -b | grep LDAP


pake distro apa sih?? sorry gag ngikutin thread ini
dari awal.

 


[EMAIL PROTECTED]:~ # smbd -b | grep KRB
 HAVE_KRB5_H
 HAVE_ADDRTYPE_IN_KRB5_ADDRESS
 HAVE_KRB5
 HAVE_KRB5_AUTH_CON_SETUSERUSERKEY
 HAVE_KRB5_C_ENCTYPE_COMPARE
 HAVE_KRB5_ENCRYPT_BLOCK
 HAVE_KRB5_ENCRYPT_DATA
 HAVE_KRB5_FREE_DATA_CONTENTS
 HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS
 HAVE_KRB5_FREE_KTYPES
 HAVE_KRB5_FREE_UNPARSED_NAME
 HAVE_KRB5_GET_PERMITTED_ENCTYPES
 HAVE_KRB5_KEYBLOCK_IN_CREDS
 HAVE_KRB5_KEYTAB_ENTRY_KEY
 HAVE_KRB5_KT_FREE_ENTRY
 HAVE_KRB5_LOCATE_KDC
 HAVE_KRB5_MK_REQ_EXTENDED
 HAVE_KRB5_PRINCIPAL2SALT
 HAVE_KRB5_PRINC_COMPONENT
 HAVE_KRB5_SET_DEFAULT_TGS_KTYPES
 HAVE_KRB5_SET_REAL_TIME
 HAVE_KRB5_STRING_TO_KEY
 HAVE_KRB5_TKT_ENC_PART2
 HAVE_KRB5_USE_ENCTYPE
 HAVE_LIBGSSAPI_KRB5
 HAVE_LIBKRB5

[EMAIL PROTECTED]:~ # smbd -b | grep LDAP
 HAVE_LDAP_H
 HAVE_LDAP
 HAVE_LDAP_DOMAIN2HOSTLIST
 HAVE_LDAP_INIT
 HAVE_LDAP_INITIALIZE
 HAVE_LDAP_SET_REBIND_PROC
 HAVE_LIBLDAP
 LDAP_SET_REBIND_PROC_ARGS


Jadi saya tuh mo sharing dari machine saya (Linux UBUNTU) ke Win XP 
(Irfan) yg merupakan client dari PDC (Win2000 adavanced Server)
Klo untuk sharing file bisa. keliatan lewat Network place (klo di 
linux namanya apa ya? ).

tapi klo jalanin smbclient lewat konsol hasilnya seperti itu.

Sebetulnya yg jadi masalah inti adalah Printer sharing di Kompi Irfan 
itu kok tidak keliatan di network place itu, seharusnya kan keliatan. 
agar kita bisa sharing.


Saya pake UBUNTU

ini smb.conf kompi saya.

#
# Sample configuration file for the Samba suite for Debian GNU/Linux.
#
#
# This is the main Samba configuration file. You should read the
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options most of which 
# are not shown in this example

#
# Any line which starts with a ; (semi-colon) or a # (hash) 
# is a comment and is ignored. In this example we will use a #

# for commentary and a ; for parts of the config file that you
# may wish to enable
#
# NOTE: Whenever you modify this file you should run the command
# "testparm" to check that you have not many any basic syntactic 
# errors. 
#


#=== Global Settings ===

[global]

## Browsing/Identification ###

# Change this to the workgroup/NT-domain name your Samba server will part of
  workgroup = TOKAIINDO

# server string is the equivalent of the NT Description field
  server string = %h server (Samba, Ubuntu)

# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable its WINS Server
;   wins support = no

# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
;   wins server = w.x.y.z

# This will prevent nmbd to search for NetBIOS names through DNS.
  dns proxy = no

# What naming service and in what order should we use to resolve host names
# to IP addresses
;   name resolve order = lmhosts host wins bcast


 Debugging/Accounting 

# This tells Samba to use a separate log file for each machine
# that connects
  log file = /var/log/samba/log.%m

# Put a capping on the size of the log files (in Kb).
  max log size = 1000

# If you want Samba to only log through syslog then set the following
# parameter to 'yes'.
;   syslog only = no

# We want Samba to log a minimum amount of information to syslog. Everything
# should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log
# through syslog you should set the following parameter to something higher.
  syslog = 0

# Do something sensible when Samba crashes: mail the admin a backtrace
  panic action = /usr/share/samba/panic-action %d


### Authentication ###

# "security = user" is always a good idea. This will require a Unix account
# in this server for every user accessing the server. See
# /usr/share/doc/samba-doc/htmldocs/ServerType.html in the samba-doc
# package for details.
;   security = user

# You may wish to use password encryption.  See the section on
# 'encrypt passwords' in the smb.conf(5) manpage before enabling.
  encrypt passwords = no

# If you are using encrypted passwords, Samba will need to know what
# password database type you are using.  
  passdb backend = tdbsam guest


  obey pam restrictions = yes

;   guest account = nobody
  invalid users = root

# This boolean parameter controls whether Samba attempts to sync the Unix
# password with the SMB password when the encrypted SMB password in the
# passdb is changed.
;   unix password sync = no

#

Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik Kowal

--- cebonx <[EMAIL PROTECTED]> wrote:

> [EMAIL PROTECTED]:/home/cebonx # smbclient -L
> 192.168.10.13 -UAdministrator
> Password:
> session setup failed: NT_STATUS_NO_LOGON_SERVERS

weleh

> >
> >>ngecek kerberos client gmn mas?
> >>
> >>
> >isi /etr/krb5.conf nya spt apa?
> >  
> >
> krb5.conf  nggak ada

weleh.. weleh..

> [EMAIL PROTECTED]:/home/cebonx # kinit -Uguest
> bash: kinit: command not found

weleh.. weleh.. weleh...
bearti kerberos clientnya gag ada tuh.

authorization di windows 2k kan menggunakan
kerberos... kalo gag ada kerberosnya gag bisa
otorisasi ke win 2k. btw win 2knya sebagai server
kan???
trus samba nya juga harus support kerberos, winbind,
LDAP,dll deh..

coba output command berikiut apa?
#smbd -b | grep KRB
#smbd -b | grep KRB
#smbd -b | grep LDAP


pake distro apa sih?? sorry gag ngikutin thread ini
dari awal.

isi /etc/samba/smb.conf nya spt apa?

untuk lebih jelasnya baca di
http://us2.samba.org/samba/docs/man/Samba3-ByExample/unixclients.html
deh, terlalu panjang kalo diterangin di sini.

btw ini isi smb.conf gw mungkin bisa jadi referensi:
# Global parameters
[global]
log file = /var/log/samba/%m
ldap ssl = No
winbind gid = 1-2
domain master = no
username map = /etc/samba/smbusers
winbind trusted domains only = yes
realm = DOMAIN
template shell = /bin/bash
winbind uid = 1-2
workgroup = DOMAIN
server signing = Auto
security = ads
syslog = 0
unix charset = LOCALE
max log size = 50
log level = 1
veto files = /*.eml/*.nwd/riched20.dll/*.{*}/
map to guest = Bad User
printcap name = /etc/printcap
password server = 192.168.0.10
socket options = SO_KEEPALIVE TCP_NODELAY
IPTOS_LOWDELAY
wins support = Yes
winbind separator = +
winbind cache time = 15
unix password sync = yes
passwd program = /usr/bin/passwd %u
passwd chat = *New*password* %n\n
*Retype*new*password* %n\n
*password:*all*authentication*tokens*updated*successfully
local master = no
preferred master = no
pam password change = yes
restrict anonymous = no
max protocol = NT

[homes]
comment = Home Directories
valid users = %S
read only = No
create mask = 0664
directory mask = 0775

[printers]
comment = All Printers
path = /var/spool/samba
guest ok = Yes
printable = Yes
browseable = No

[print$]
comment = Printer Drivers
path = /var/lib/samba/drivers
admin users = root, Administrator
write list = root

[qc]
case sensitive = no
msdfs proxy = no
path = /home/quality/Documents/
comment = QC Files
guest ok = yes
read only = no
directory mask = 0775
only user = yes
username =
quality,DOMAIN+quality,DOMAIN+administrator,DOMAIN+donnie

krb5.conf gw:
[libdefaults]
default_realm = DOMAIN
clockskew = 300

[realms]
DOMAIN = {
kdc = 192.168.0.10
default_domain = DOMAIN
admin_server = 192.168.0.10
}

[logging]
kdc = FILE:/var/log/krb5kdc.log
admin_server = FILE:/var/log/kadmin.log
default = FILE:/var/log/krb5lib.log

[domain_realm]
.domain = DOMAIN
domain = DOMAIN

[KDC]
profile= /var/kerberos/krb5kdc/kdc.conf

[appdefaults]
pam = {
ticket_lifetime = 1d
renew_lifetime = 1d
forwardable = false
proxiable = false
retain_after_close = true
minimum_uid = 0
afs_cells = DOMAIN
}


replying from web

Send instant messages to your online friends http://asia.messenger.yahoo.com 

-- 
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik cebonx

SETIJO AGUS wrote:


Jangan - jangan xp nya masih diaktifkan security/firewallnya ??
Dicoba dulu pakai client os yang sama windows dulu dech.
Sory aku begitu pengalaman pakai xp.



god is good all the time

 



Firewallnya saya sudah matikan.
untuk sharing sesama windows ok2 aja, no problem.!!!




___ 
How much free photo storage do you get? Store your holiday 
snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com


--
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



RE: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik SETIJO AGUS
Jangan - jangan xp nya masih diaktifkan security/firewallnya ??
Dicoba dulu pakai client os yang sama windows dulu dech.
Sory aku begitu pengalaman pakai xp.

 

god is good all the time
 

-Original Message-
From: cebonx [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 11, 2005 2:20 PM
To: tanya-jawab@linux.or.id
Subject: Re: [tanya-jawab] Mohon Penjelasan smbclient

Ini saya coba matiin service samba nya
[EMAIL PROTECTED]:~ # /etc/init.d/samba stop
 * Stopping Samba daemons... 
[ ok ]

saya aktifkan/enablekan user guest di win XP nya

tetapi knp masih blon keliatan file sharing dan printer sharingnya?


---
[EMAIL PROTECTED]:~ # smbclient -L 192.168.10.13 -Uguest%
Anonymous login successful
Domain=[TOKAIINDO] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]

Sharename   Type  Comment
-     ---
Error returning browse list: NT_STATUS_ACCESS_DENIED
session request to 192.168.10.13 failed (Called name not present)
session request to 192 failed (Called name not present)
Anonymous login successful
Domain=[TOKAIINDO] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]

Server   Comment
----

WorkgroupMaster
----


SETIJO AGUS wrote:

>Pak semoga membantu
>Tempatku user ada yang pakai windows NT dan dipasangi printer epson LX
300+,
>agar user lain dapat mengakses printer tsb, aku aktifkan user guest dengan
>hak akses read only pada windows NT.
>Dari linux kalau pingin lihat share printer dengan menggunakan smbclient
>seperti berikut dan nggak error, dan tidak perlu setup smb.conf dalam
contoh
>dibawah smb aku matikan.
>
>[EMAIL PROTECTED] root]# service smb stop
>Shutting down SMB services:[  OK  ]
>Shutting down NMB services:[  OK  ]
>
>[EMAIL PROTECTED] root]# smbclient -L 172.20.247.55 -Uguest%
>added interface ip=172.20.140.31 bcast=172.20.255.255 nmask=255.255.0.0
>session request to 172.20.247.55 failed (Called name not present)
>session request to 172 failed (Called name not present)
>Domain=[UBSLINUX] OS=[Windows NT 4.0] Server=[NT LAN Manager 4.0]
>
>Sharename  Type  Comment
>-    ---
>ADMIN$ Disk  Remote Admin
>EpsonLX-   Printer   Epson LX-300
>IPC$   IPC   Remote IPC
>C$ Disk  Default share
>D$ Disk  Default share
>E$ Disk  Default share
>print$ Disk  Printer Drivers
>
>Server   Comment
>----
>
>WorkgroupMaster
>----
>[EMAIL PROTECTED] root]#
>
>
>
>
>god is good all the time
> 
>
>
>  
>





___ 
Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with
voicemail http://uk.messenger.yahoo.com

-- 
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis

-- 
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik cebonx

Kowal wrote:


--- cebonx <[EMAIL PROTECTED]> wrote:

 


Maksudnya browse sbg administrator?
   



iya jalanin command smbclient pake -UAdministrator
 



[EMAIL PROTECTED]:/home/cebonx # smbclient -L 192.168.10.13 -UAdministrator
Password:
session setup failed: NT_STATUS_NO_LOGON_SERVERS


 


ngecek kerberos client gmn mas?
   


isi /etr/krb5.conf nya spt apa?
 


krb5.conf  nggak ada

 


output #kinit -Uguest   < syntaxnya gmn ya ? :(
   



pake #kinit -Uguest  :D
 


[EMAIL PROTECTED]:/home/cebonx # kinit -Uguest
bash: kinit: command not found

 


vi /etc/passwd <- di linux box nggak ada user
guest.
   



coba bikin user guest, masukkan ke dalam group guest.

 


[EMAIL PROTECTED]:/home/cebonx # adduser guest
Adding user `guest'...
Adding new group `guest' (1001).
Adding new user `guest' (1001) with group `guest'.
Creating home directory `/home/guest'.
Copying files from `/etc/skel'
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Changing the user information for guest
Enter the new value, or press ENTER for the default
   Full Name []: guest
   Room Number []:
   Work Phone []:
   Home Phone []:
   Other []:
Is the information correct? [y/N] y



sorry newbie banget.
   



gpp, saya jg newbie kok :D

replying from web



__ 
Meet your soulmate!

Yahoo! Asia presents Meetic - where millions of singles gather
http://asia.yahoo.com/meetic


 







___ 
Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with voicemail http://uk.messenger.yahoo.com


--
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik Kowal
--- cebonx <[EMAIL PROTECTED]> wrote:

> Maksudnya browse sbg administrator?

iya jalanin command smbclient pake -UAdministrator

> ngecek kerberos client gmn mas?
isi /etr/krb5.conf nya spt apa?

> output #kinit -Uguest   < syntaxnya gmn ya ? :(

pake #kinit -Uguest  :D

> vi /etc/passwd <- di linux box nggak ada user
> guest.

coba bikin user guest, masukkan ke dalam group guest.

> sorry newbie banget.

gpp, saya jg newbie kok :D

replying from web



__ 
Meet your soulmate!
Yahoo! Asia presents Meetic - where millions of singles gather
http://asia.yahoo.com/meetic


-- 
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik cebonx




kalau browse sebagai administrator bisa gag?
kerberos client di linux boxnya udah bener?
tolong output dari #kinit -Uguest
apa sudah ada user account guest di linux box anda?

Nuhun sadayana,
Kowal.



Maksudnya browse sbg administrator?
ngecek kerberos client gmn mas?
output #kinit -Uguest   < syntaxnya gmn ya ? :(

vi /etc/passwd <- di linux box nggak ada user guest.

sorry newbie banget.

thanx
c3bonx




___ 
Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with voicemail http://uk.messenger.yahoo.com


--
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik Kowal
On Mon, 11 Jul 2005 14:19:37 +0700, cebonx <[EMAIL PROTECTED]>  
wrote:



Ini saya coba matiin service samba nya
[EMAIL PROTECTED]:~ # /etc/init.d/samba stop
 * Stopping Samba daemons...  
[ ok ]


saya aktifkan/enablekan user guest di win XP nya

tetapi knp masih blon keliatan file sharing dan printer sharingnya?

---
[EMAIL PROTECTED]:~ # smbclient -L 192.168.10.13 -Uguest%
Anonymous login successful
Domain=[TOKAIINDO] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]

Sharename   Type  Comment
-     ---
Error returning browse list: NT_STATUS_ACCESS_DENIED
session request to 192.168.10.13 failed (Called name not present)
session request to 192 failed (Called name not present)
Anonymous login successful
Domain=[TOKAIINDO] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]

Server   Comment
----

WorkgroupMaster
----


kalau browse sebagai administrator bisa gag?
kerberos client di linux boxnya udah bener?
tolong output dari #kinit -Uguest
apa sudah ada user account guest di linux box anda?

Nuhun sadayana,
Kowal.

--
Knowledge is power. Information is strength.
What will you do with them.
Send instant messages to your online friends http://asia.messenger.yahoo.com 


--
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



Re: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-11 Terurut Topik cebonx

Ini saya coba matiin service samba nya
[EMAIL PROTECTED]:~ # /etc/init.d/samba stop
* Stopping Samba daemons... 
[ ok ]


saya aktifkan/enablekan user guest di win XP nya

tetapi knp masih blon keliatan file sharing dan printer sharingnya?

---
[EMAIL PROTECTED]:~ # smbclient -L 192.168.10.13 -Uguest%
Anonymous login successful
Domain=[TOKAIINDO] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]

   Sharename   Type  Comment
   -     ---
Error returning browse list: NT_STATUS_ACCESS_DENIED
session request to 192.168.10.13 failed (Called name not present)
session request to 192 failed (Called name not present)
Anonymous login successful
Domain=[TOKAIINDO] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]

   Server   Comment
   ----

   WorkgroupMaster
   ----


SETIJO AGUS wrote:


Pak semoga membantu
Tempatku user ada yang pakai windows NT dan dipasangi printer epson LX 300+,
agar user lain dapat mengakses printer tsb, aku aktifkan user guest dengan
hak akses read only pada windows NT.
Dari linux kalau pingin lihat share printer dengan menggunakan smbclient
seperti berikut dan nggak error, dan tidak perlu setup smb.conf dalam contoh
dibawah smb aku matikan.

[EMAIL PROTECTED] root]# service smb stop
Shutting down SMB services:[  OK  ]
Shutting down NMB services:[  OK  ]

[EMAIL PROTECTED] root]# smbclient -L 172.20.247.55 -Uguest%
added interface ip=172.20.140.31 bcast=172.20.255.255 nmask=255.255.0.0
session request to 172.20.247.55 failed (Called name not present)
session request to 172 failed (Called name not present)
Domain=[UBSLINUX] OS=[Windows NT 4.0] Server=[NT LAN Manager 4.0]

   Sharename  Type  Comment
   -    ---
   ADMIN$ Disk  Remote Admin
   EpsonLX-   Printer   Epson LX-300
   IPC$   IPC   Remote IPC
   C$ Disk  Default share
   D$ Disk  Default share
   E$ Disk  Default share
   print$ Disk  Printer Drivers

   Server   Comment
   ----

   WorkgroupMaster
   ----
[EMAIL PROTECTED] root]#




god is good all the time



 







___ 
Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with voicemail http://uk.messenger.yahoo.com


--
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



RE: [tanya-jawab] Mohon Penjelasan smbclient

2005-07-10 Terurut Topik SETIJO AGUS
Pak semoga membantu
Tempatku user ada yang pakai windows NT dan dipasangi printer epson LX 300+,
agar user lain dapat mengakses printer tsb, aku aktifkan user guest dengan
hak akses read only pada windows NT.
Dari linux kalau pingin lihat share printer dengan menggunakan smbclient
seperti berikut dan nggak error, dan tidak perlu setup smb.conf dalam contoh
dibawah smb aku matikan.

[EMAIL PROTECTED] root]# service smb stop
Shutting down SMB services:[  OK  ]
Shutting down NMB services:[  OK  ]

[EMAIL PROTECTED] root]# smbclient -L 172.20.247.55 -Uguest%
added interface ip=172.20.140.31 bcast=172.20.255.255 nmask=255.255.0.0
session request to 172.20.247.55 failed (Called name not present)
session request to 172 failed (Called name not present)
Domain=[UBSLINUX] OS=[Windows NT 4.0] Server=[NT LAN Manager 4.0]

Sharename  Type  Comment
-    ---
ADMIN$ Disk  Remote Admin
EpsonLX-   Printer   Epson LX-300
IPC$   IPC   Remote IPC
C$ Disk  Default share
D$ Disk  Default share
E$ Disk  Default share
print$ Disk  Printer Drivers

Server   Comment
----

WorkgroupMaster
----
[EMAIL PROTECTED] root]#




god is good all the time
 

-Original Message-
From: cebonx [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 11, 2005 8:42 AM
To: tanya-jawab@linux.or.id
Subject: [tanya-jawab] Mohon Penjelasan smbclient

Dear All,

Mohon penjelasannya buat senior-senior,
maksud dari hasil smbclient dibawah, klo saya pake username dan password 
login saya di lin (ubuntu) hasilnya selalu failed, ketika saya login 
pake anonymous file sharingnya nggak keliatan, apa ada yg kurang atau 
salah dalam step saya?

terima kasih.

---

[EMAIL PROTECTED]:/etc/samba # /usr/bin/smbclient -L 192.168.10.13
Password:
Anonymous login successful
Domain=[TOKAIINDO] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]

Sharename   Type  Comment
-     ---
Error returning browse list: NT_STATUS_ACCESS_DENIED
session request to 192.168.10.13 failed (Called name not present)
session request to 192 failed (Called name not present)
Anonymous login successful
Domain=[TOKAIINDO] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]

Server   Comment
----

WorkgroupMaster
----





___ 
Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with
voicemail http://uk.messenger.yahoo.com

-- 
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis

-- 
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis



[tanya-jawab] Mohon Penjelasan smbclient

2005-07-10 Terurut Topik cebonx

Dear All,

Mohon penjelasannya buat senior-senior,
maksud dari hasil smbclient dibawah, klo saya pake username dan password 
login saya di lin (ubuntu) hasilnya selalu failed, ketika saya login 
pake anonymous file sharingnya nggak keliatan, apa ada yg kurang atau 
salah dalam step saya?


terima kasih.
---

[EMAIL PROTECTED]:/etc/samba # /usr/bin/smbclient -L 192.168.10.13
Password:
Anonymous login successful
Domain=[TOKAIINDO] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]

   Sharename   Type  Comment
   -     ---
Error returning browse list: NT_STATUS_ACCESS_DENIED
session request to 192.168.10.13 failed (Called name not present)
session request to 192 failed (Called name not present)
Anonymous login successful
Domain=[TOKAIINDO] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]

   Server   Comment
   ----

   WorkgroupMaster
   ----





___ 
Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with voicemail http://uk.messenger.yahoo.com


--
Unsubscribe: kirim email kosong ke [EMAIL PROTECTED]
Arsip, FAQ, dan info milis di http://linux.or.id/milis
Tidak bisa posting? Baca:
http://linux.or.id/problemmilis
http://linux.or.id/tatatertibmilis