Re:Can't able to access shared folders from different VLANs in SG300 series switches

Hi All,
I supplied 3 numbers of SG300 series switches for the sole reason to have inter-vlan routing. I created 4 VLANs in the switches and made one switch as Layer 3 switch and other 2 as Layer 2 switch. Inter-Vlan routing is working fine. I am able to ping PCs from different VLANs. But I am not to access shared folders. Customer has installed Window 2003 server installed and it is in VLAN 1. There are some folders created in this server and it is very important for users to have access to the folders.Also, I am not able to access shared folders in other VLANs. I have created a case with Cisco small business and I got a reply saying that the switches will not support shared folder feature, which I think is not real. I am getting a very time to implement this solution in the network. I have a Sonicwall firewall after Core switch which is connected to ISP.
ISP<----->Sonicwall FW<----->Core Switch<------>Layer 2 switch<------>Layer 2 switch
Kindly help me out to resolve this issue.
Regards,
Prashant K

Hi Prashant,
I think you're running into a Windows firewall issue. SMB file sharing, by default I believe, is only allowed on your local subnet. Please try disabling windows firewall on the computer hosting the shared folder, then see if you can access the shared file.
Best,
David
PS: It looks like this post got published twice. You can delete the other one using the task bar on the right.
Please remember to rate helpful resonses and identify correct answers.

Similar Messages

  • [SOLVED] VBox: Access shared folders from Windows Server 2008 Guest

    Hi,
    I have installed virtualbox v4.2.4 on Arch and I launch a WIndows Server 2008 guest. I want to access shared folder from guest. How to do it?
    Last edited by toni (2012-11-26 00:31:21)

    Hi,
    I have done this but it does not work.
    My network is configured as a NAT in virutalbox.
    Also from WIndows server 2008 guest I do:
    net use z:\\vboxsvr\mySharedFolder
    Do I have to install additional software in host or do I have to configure something in Windows server 2008 guest?
    illusionist wrote:
    See Here
    Also Here

  • Cannot access shared folders anymore....

    Hi,
    We have a naughty problem at the office for accessing shared folders .
    We use G5 Xserve + Xraid serving home access to 12 macs.
    Our problem started when we updated all machines to 10.5.2 (nor did we have a problem with 10.5.1 or with 10.5.0).
    All machines login correctly, fetch their folders with their home accesses located in the Xserve, as allways did, BUT :
    ·Almost all the machines running Leopard (except two) CANNOT access shared items. They get Error -5002
    ·The old machines running Tiger (G3 Imac's) acess shared items without problem.
    So after many weeks doing multiple tests, we got the following conclusions:
    ·Problem is not server related.
    ·Problem si related to Leopard clients , although not in all
    ·Problem is not related to the machine, but with the account (accounts that can access shared items do it on any machine, and accounts that can't, don't do it on any machine)
    ·It seems that the trouble is related somewhat with Kerberos authentication, but it's not related to tickets (renewing them is no use)
    ·If we create new account with new name, it can access shared items
    ·If we create new account with same name that of the faulty one (renaming the later), it CANNOT access shared items.
    We have got a problem in the office, and no clue of solving it.... Have read all over apple discussions over the internet, and although some people have similar issues, they are not as close as ours....
    And none of the solutions proposed have solved the problem.
    Any ideas would be greatly appreciated, cause we are starting to get desperate
    Thanks everyone.

    new update:
    we are able to connect to remote shared folders with a different remote server (dual G4) from every machine
    machines who can connect to local server are INTELs, the one who can't are PPCs
    makes any sense to anyone?¿

  • Can't able to access the duplicate control?

    I have created the duplicate control in tabpage as shown in below code snippet. but i can't able to access the created object.
    Code Snippet
     private void button1_Click(object sender, EventArgs e)
                TabPage newPage = new TabPage();
                foreach (Control c in  tabControl1.TabPages[0].Controls)
                    Control cNew = (Control)Activator.CreateInstance(c.GetType());
                    PropertyDescriptorCollection pdc = TypeDescriptor.GetProperties(c);
                    foreach (PropertyDescriptor entry in pdc)
                        object val = entry.GetValue(c);
                        entry.SetValue(cNew, val);
                    newPage.Controls.Add(cNew);
                tabControl1.TabPages.Add(newPage);

    Hi Carl,
    Thanks for your update.
    Now I got some idea. But I have one more issue. 
    During button click the I need all the properties in textbox in TabPage1 to the textbox in NewTabPage(refer above image). but later if we change in text in any textbox the replaced text should not reflects the other text.
    E.g: If textbox.text="Microsoft";
    during buttonclick i need the textbox in New Tab Page should be Microsoft. 
    later if I edit the text should not New Tab Page or TabPage1 the text should not reflects from one control to other.
    Regards,
    R.Senthil Kumaran
    Hello,
    I could get what you are dealing with now, and to get that done, I would recommend you use the following way.
    1. Add properties to UserControl, you could define the names of these properties with custom rules.
    public partial class UserControl1 : UserControl
    public UserControl1()
    InitializeComponent();
    public string StrTxtBox1
    get { return this.textBox1.Text ; }
    set { this.textBox1.Text = value; }
    2. Use similar way you shared and edit it to just copy the specific properties.
    TabPage newPage = new TabPage("NewTabPage");
    newPage.UseVisualStyleBackColor = tabControl1.TabPages[0].UseVisualStyleBackColor;
    foreach (Control c in tabControl1.TabPages[0].Controls)
    Control cNew = (Control)Activator.CreateInstance(c.GetType());
    PropertyDescriptorCollection pdc = TypeDescriptor.GetProperties(c);
    foreach (PropertyDescriptor entry in pdc)
    if (entry.DisplayName == "StrTxtBox1"|| entry.DisplayName == "Location")
    object val = entry.GetValue(c);
    entry.SetValue(cNew, val);
    newPage.Controls.Add(cNew);
    tabControl1.TabPages.Add(newPage);
    In this case, if we have a lot perproties to copy, you could consider capture them by the custom rules you defined at #1 like this one.
    if (entry.DisplayName.Contains("StrTxt")|| entry.DisplayName == "Location")
    object val = entry.GetValue(c);
    entry.SetValue(cNew, val);
    Result:
    And if possible, you could consider using this way which just copies the Text , Location or any other property and we don't need to create any usercontrol.
    TabPage newPage = new TabPage("NewTabPage");
    newPage.UseVisualStyleBackColor = tabControl1.TabPages[0].UseVisualStyleBackColor;
    foreach (Control c in tabControl1.TabPages[0].Controls)
    Control cNew = (Control)Activator.CreateInstance(c.GetType());
    PropertyDescriptorCollection pdc = TypeDescriptor.GetProperties(c);
    foreach (PropertyDescriptor entry in pdc)
    if (entry.DisplayName == "Text" || entry.DisplayName == "Location")
    object val = entry.GetValue(c);
    entry.SetValue(cNew, val);
    newPage.Controls.Add(cNew);
    tabControl1.TabPages.Add(newPage);
    Regards.
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can't able to access the Jar files which is kept inside the folder.

    Hi,
    I am using the eclipse IDE, my project folder contains the folders src, bin, .metadata, .settings
    if i place the jar file in the same location of the above mentioned folder means i can able to use the Jar file in eclipse(in my project).
    But i create one folder in the same location in the name of Jar or anything and all jar files are placed inside the folder,then i can't able to access the jar file in eclipse(in my project).
    How i can solve this problem?

    RajivGuna wrote:
    ..How i can solve this problem?Put Eclipse aside for the moment and learn how the SDK tools work at the level of the command line, then you will be much better placed to figure how to do it in the IDE. If you are still having problems, I suggest you ask on an [Eclipse forum|http://www.eclipse.org/forums/].

  • CAN'T SEE SHARED FOLDERS FROM THE PC ON MY MAC SINCE  SNOW LEOPARD UPGRADE

    HELP! Ever since I've installed Snow Leopard on my iMac, I don't see my folders I selected for sharing from the Microsoft PC computer in my network anymore. I can't seem to locate anything. However the PC is able to see the folders from my iMac. If anyone has solutions to this problem, your help would greatly be appreciated.
    Thanks!
    Pat

    Your problem is probably the same one I described in my thread:
    http://discussions.apple.com/thread.jspa?threadID=2133962&tstart=0
    The problem in my case, seems to be that the SL mac is not setting itself as the master browser, so when a Windows PC is switched on, it doesn't update that computer in the finder sidebar.
    You can see if this is the case, by opening terminal, and typing:
    nmblookup -M -- -
    If it comes back with "name_query failed to find name _MSBROWSE_#01" then you've got the same problem as me. With Leopard, my mac would report back as the master browser.
    It's got nothing to do with the firewall (I've tried turning mine off ,to no avail). Also, my workgroup is correct, and smb sharing is turned on for the user.

  • Problem accessing shared folders with SMB from a Windows machine

    When I reboot my Macmini, I cant access the shared folders from any Windows machine. On the Windows machine, I'm being prompted for my password, but event re-entering my password does help to get access.
    The workaround I found is to go to the MacOSX System Preferences, Sharing, File Sharing, Options, and to uncheck and re-check the checkbox Share file and folders using SMB (Windows). Then I can access again the shared forders from a Windows machine and I'm not re-prompted for my password.
    This is quite trooblesome to do that everytime I reboot my Mac. Is anybody experiencing the same pb? Any idea to fix it?
    Also, since Lion, I'm experiencing some connection interruption, especially when copying big files from my Mac to a Windows machine.

    Yes that is basically the only workaround for this problem. By chance do you have a SSD installed in the Mini?
    I had this problem on my MBP when I had a SSD installed. Problem goes away with the original drive or a Seagate XT series drive.
    If you don't have a SSD installed the only other option is to Wipe the drive and reinstall and test (Make a TM backup first so you can restore if the problem continues with the clean Re-Install).
    JosoSG wrote:
    When I reboot my Macmini, I cant access the shared folders from any Windows machine. On the Windows machine, I'm being prompted for my password, but event re-entering my password does help to get access.
    The workaround I found is to go to the MacOSX System Preferences, Sharing, File Sharing, Options, and to uncheck and re-check the checkbox Share file and folders using SMB (Windows). Then I can access again the shared forders from a Windows machine and I'm not re-prompted for my password.
    This is quite trooblesome to do that everytime I reboot my Mac. Is anybody experiencing the same pb? Any idea to fix it?
    Also, since Lion, I'm experiencing some connection interruption, especially when copying big files from my Mac to a Windows machine.

  • I can't able to access shapes(circle,star) in tool,only rectangle is used.what to do for drawing other shapes?

    i can't able to access shapes(circle,star) in tool,only rectangle is used.what to do for drawing other shapes?

    Mylenium is right; we don't know enough to help you.
    Screenshots of your interface would help. Also, more information about your OS, version of AE, etc.: FAQ: What information should I provide?

  • I can't able to access the itunes stores to download and update new apps

    iam using iphone4 for more than a six months. but for the last 10days i can't able to access the itunes store to download a app or to update it. what should i do. my itunes is opening properly. i can download videos pictures and songs from my system. the problem is only with itunes stores. i also updated the account information. which also doesnt got solved the problem. what should i do??

    http://support.apple.com/kb/TS1559

  • Cannot access some folders from Bridge CS6

    Only certain folders on my internal drive can't be accessed from Bridge.
    I can access the folders from PS CS6 but from Bridge, files cannot be displayed.

    Not sure where to look to ensure a folder is both read & write permission. Focusing on one of the folders which suddenly I can't access from Bridge - Pictures; if I use Finder all pics  are visible from the folder. If I open a file from the folder in Photoshop I can edit and save in the Pictures folder.
    Select a folder in the finder and choose cmd + i or use menu File / show info. This provides a window and at the bottom it shows the permissions that are set. If you are the user and have administrator privileges (meaning you you have access with password to the account and are able to install and uninstall applications) it should sat for both system and administrator 'read and write'
    Only from Bridge are certain folders inaccessable....in Bridge the folder has a red circle with white - and message 'no items to display'
    This is getting a bit tricky. If you have jpeg or raw files in the picture folder that also show in the Finder Bridge should display them without problems. If you try to visualize a library form iPhoto or Aperture this will not be able in Bridge because those files are packages.

  • Can anyone help me with deleting folders from Appleworks?

    I have an older computer that I am giving to a friend and I want to export and remove all of my personal folders in Appleworks (6.2.9). I have not been able to export info and I have also not been able to delete any folders from Appleworks. I can delete all the info in the individual file (ss or wp) but cannot remove the file itself. I don't know what I'm missing but I cannot find info on how to handle this problem. Can anyone help me with this?

    Search for the file's name in the Finder, throw it away, and empty the Trash; the Finder is the item in the Dock with the smiling face.
    (38373)

  • I have an iphone6. I am unsure whether to go from 8.1.3 operating system and switch to  ICloud Drive or not?  Has anyone done this?  Is it awesome?  I need to be able to access my resume from phone. I think this will help me achieve this.am i right?

    I have an iphone6. I am unsure whether to go from 8.1.3 operating system and switch to  ICloud Drive or not?  Has anyone done this?  Is it awesome?  I need to be able to access my resume from phone. I think this will help me achieve this?  Am i right?  Is there any body out there right now that could help me?  I'm thinking about going from 8.1.3 to I guess yosemite?  Or is that for Mac computers?  I don't understand the language entirely on the help page.   Anyone's straight forward and easy stepped advice would be much appreciated.  I'm so frustrated and I need a job so badly!  Drowning in debt.  Any help appreciated!
    Thanks,
    A

    You're a Windows user, correct? If so, read here:
    http://support.apple.com/kb/DL1455

  • Not able to access javaFx charts from a remote system after using ext. jars

    We are facing following issue. Any recommendations to resolve these issues are highly appreciated.
    1. Not able to access javaFx charts from a remote system (More details at the end of mail).This is high priority requirement as we have a web based reporting application and users access it over our static IP address.
    We are using Java Fx charts in our web application where we built jnlp and jar files in a separate fx project and kept jar and jnlp’s inside our web project.
    It is working fine when we did not used any external jar files and remotely it is accessible. But when we used external jars our project is running on local
    system but remotely it is not working due to some path settings. We modified jnlp files where entry of jar files exists and modified the jar path as per our
    project. But still it did not work.
    Before using external jars inside our java fx project my jnlp looks like:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/" href="JavaFXApplication3.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
    <jar href="JavaFXApplication3.jar" main="true"/>
    </resources>
    <application-desc main-class="com.sun.javafx.runtime.main.Main">
    <argument>MainJavaFXScript=misc.Test</argument>
    </application-desc>
    <update check="background">
    </jnlp>
    After modifying my jnlp as per my project as
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="/PiFx/FxFiles/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
    <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
    </resources>
    <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
    <param name="MainJavaFXScript" value="misc.MyChart">
    </applet-desc>
    <update check="background">
    </jnlp>
    After adding external jars my jnlp looks like this :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/" href="JavaFXApplication3.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
    <jar href="JavaFXApplication3.jar" main="true"/>
    <jar href="lib/jdom.jar"/>
    </resources>
    <application-desc main-class="com.sun.javafx.runtime.main.Main">
    <argument>MainJavaFXScript=misc.Test</argument>
    </application-desc>
    <update check="background">
    </jnlp>
    I have modified the jnlp as per my project :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="/PiFx/FxFiles/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
    <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
    <jar href="/PiFx/FxFiles/lib/jdom.jar"/>
    </resources>
    <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
    <param name="MainJavaFXScript" value="misc.MyChart">
    </applet-desc>
    <update check="background">
    </jnlp>
    where PiFx is our project Name

    We have tried few things given in thread : http://forums.sun.com/thread.jspa?threadID=5401999
    Now it is not able to get the external jar file only
    exception: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar.
    java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
         at com.sun.deploy.net.DownloadEngine.getCachedResourceFilePath(Unknown Source)
         at com.sun.javaws.LaunchDownload.getSignedJNLPFile(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDescHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDesc(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.prepareLaunchFile(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
    exception: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar.
    java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
         at com.sun.deploy.net.DownloadEngine.getCachedResourceFilePath(Unknown Source)
         at com.sun.javaws.LaunchDownload.getSignedJNLPFile(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDescHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDesc(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.prepareLaunchFile(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
    JavaFXApplication3.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3.jnlp">
        <information>
            <title>JavaFXApplication3</title>
            <vendor>Saurabh</vendor>
            <homepage href="/PiFx/FxFiles/"/>
            <description>JavaFXApplication3</description>
            <offline-allowed/>
            <shortcut>
                <desktop/>
            </shortcut>
        </information>
        <resources>
            <j2se version="1.5+"/>
            <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
            <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
            <jar href="/PiFx/FxFiles/lib/jdom.jar" main="true" />
        </resources>
        <application-desc main-class="com.sun.javafx.runtime.main.Main">
            <argument>MainJavaFXScript=misc.MyChart</argument>
        </application-desc>
        <update check="background">
    </jnlp>JavaFXApplication3_browser.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
        <information>
            <title>JavaFXApplication3</title>
            <vendor>Saurabh</vendor>
            <homepage href="/PiFx/FxFiles/"/>
            <description>JavaFXApplication3</description>
            <offline-allowed/>
            <shortcut>
                <desktop/>
            </shortcut>
        </information>
        <resources>
            <j2se version="1.5+"/>
            <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
           <jar href="/PiFx/FxFiles/JavaFXApplication3.jar"  main="true"/>
            <jar href="/PiFx/FxFiles/lib/jdom.jar" main="true"/>
        </resources>
        <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
            <param name="MainJavaFXScript" value="misc.MyChart">
        </applet-desc>
        <update check="background">
    </jnlp>Applet Code
    javafx({
    archive: "../FxFiles/JavaFXApplication3.jar",
    draggable: true,
    height:hgt,
    width:wdt,
    code: "misc.MyChart",
    name: appletName,
    id: appletName
    });

  • Is it possible to insert a url link into the itunes description tag. I want the user to be able to access my webpage from within itunes

    Hi,
    Is it possible to insert a url link into the itunes description tag in a feed. I want the user to be able to access my webpage from within itunes
    Thanks

    In the next release, we will be making adding our Measurement Studio components to existing projects much easier, but for now what you would need to do is add the support for Measurement Studio to your MFC project manually as detailed in our Knowledgbase at:
    http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/0cb6707522e92c958625689e0052bb77?OpenDocument
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

  • I can't able to download my aps from I tunes, cause my apple ID is disabled, may I know how to re-activate my apple ID

    I can't able to download my aps from I tunes, cause my apple ID is disabled, may I know how to re-activate my apple ID

    Depending on why it's been disabled, you might be able to re-enable it via this page : http://appleid.apple.com
    Or you might need to contact Apple : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

Maybe you are looking for